/* =========================================================
   style-index.css
   MainturaTECH – Startseite
   Branding: #E95420 · #1C1C1C · #FFFFFF · Noto Sans
   ========================================================= */


    /* =========================================================
   1) Fonts
   – Lokale Einbindung von Poppins in 4 Schnitten
   ========================================================= */
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/poppins-v22-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
 
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/poppins-v22-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
 
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/poppins-v22-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
 
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/poppins-v22-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
 
/* =========================================================
   1b) Noto Sans – lokal eingebunden (DSGVO-konform)
   Dateien: fonts/NotoSans/
   ========================================================= */
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
 


    /* ── VARIABLES ── */
    :root {
      --orange:      #E95420;
      --orange-dark: #c8421a;
      --dark:        #1C1C1C;
      --dark-alt:    #262626;
      --white:       #FFFFFF;
      --bg-alt:      #F5F5F5;
      --text-muted:  #666666;
      --border:      #E0E0E0;
      --shadow:      0 4px 20px rgba(0,0,0,.08);
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans', sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all .2s;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,.4);
    }
    .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
    .btn-outline {
      background: transparent;
      color: var(--orange);
      border-color: var(--orange);
    }
    .btn-outline:hover { background: var(--orange); color: var(--white); }
    .btn-disabled {
      opacity: .45;
      pointer-events: none;
      cursor: not-allowed;
    }

    /* ── TOPBAR / NAV WIE NORMPRO, FUNKTIONEN BLEIBEN ── */
    .topbar {
      background: var(--dark);
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .topbar .container {
      max-width: none;
      height: 64px;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      font-family: 'Noto Sans', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: var(--white);
      letter-spacing: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      display: block;
    }

    .brand span {
      color: var(--orange);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      border-radius: 0;
      transition: color .2s;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--white);
    }

    .nav .nav-cta {
      background: var(--orange);
      color: var(--white) !important;
      padding: 9px 20px;
      border-radius: 8px;
      font-weight: 700 !important;
      margin-left: 0;
    }

    .nav .nav-cta:hover {
      background: var(--orange-dark);
      color: var(--white) !important;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--white);
      font-size: 22px;
      cursor: pointer;
    }


    /* ── NAV ── */
    nav {
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-logo {
      font-family: 'Noto Sans', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: var(--white);
      letter-spacing: 0px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo span { color: var(--orange); font-size: 22px; font-weight: 700; letter-spacing: 0; }
    nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
    }
    nav ul a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color .2s;
    }
    nav ul a:hover { color: var(--white); }
    .nav-cta {
      background: var(--orange);
      color: var(--white) !important;
      padding: 9px 20px;
      border-radius: 8px;
      font-weight: 700 !important;
    }
    .nav-cta:hover { background: var(--orange-dark); color: var(--white) !important; }


/* =========================================================
   HERO SECTION – NORMPRO STYLE TRANSFORMATION
   ========================================================= */

.hero {
  background-color: #1c1c1c; /* Das tiefe Schwarz von NormPro */
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

/* Der typische NormPro Glow-Effekt im Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(233, 84, 32, 0.15) 0%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Zwei Spalten: Text links, Bild rechts */
  align-items: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* --- Content & Typografie --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 84, 32, 0.15);
  border: 1px solid rgba(233, 84, 32, 0.4);
  color: #e95420;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border-radius: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #e95420;
}

.hero p {
  font-size: 18px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

/* --- Stats Bereich --- */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #e95420;
  display: block;
}

.stat-item .stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Buttons --- */
.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #e95420;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #444;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #e95420;
  color: #e95420;
}

/* --- Visual / Bild (Rechte Spalte) --- */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-phone {
  position: relative;
  z-index: 2;
}

.hero-phone img {
  width: 100%;
  max-width: 450px; /* Gleiche Größe wie in NormPro */
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
  border-radius: 12px; /* Falls es ein Screenshot ist */
}

/* --- Responsive Anpassung --- */
@media (max-width: 992px) {
  .hero {
    padding: 60px 24px;
    min-height: auto;
  }
  
  .hero-inner {
    grid-template-columns: 1fr; /* Stapeln auf Mobile */
    text-align: center;
    gap: 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    margin: 0 auto 36px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-phone img {
    max-width: 320px;
  }
}

    /* ── SECTION GENERIC ── */
    .section { padding: 90px 0; }
    .section-alt { background: var(--bg-alt); }
    .section-dark { background: var(--dark); }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }
    .section-title {
      font-size: 36px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .section-title.light { color: var(--white); }
    .section-lead {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
    }
    .section-lead.light { color: #aaa; }
    .section-header { margin-bottom: 56px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-lead { margin: 0 auto; }

    /* ── USP STRIP ── */
    .usp-strip {
      background: var(--orange);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .usp-strip span {
      color: var(--white);
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .usp-sep { color: rgba(255,255,255,.35); font-size: 18px; }

    /* ── ÜBER UNS / INTRO ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: stretch;
    }
    .about-text {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .about-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px 26px;
      box-shadow: var(--shadow);
    }
    .about-card-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 8px;
    }
    .about-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
    }
    .about-values {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .value-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .value-dot {
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 6px;
    }
    .value-item span {
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
    }

    .about-image {
      position: relative;
      border-radius: 20px;
      padding: 16px;
      background: linear-gradient(135deg, #ff7a3d 0%, var(--orange) 55%, var(--orange-dark) 100%);
      min-height: 360px;
      isolation: isolate;
    }
    .about-image::before {
      content: '';
      position: absolute;
      top: -18px;
      left: -18px;
      width: 90px;
      height: 90px;
      border: 2px solid rgba(233,84,32,.45);
      border-radius: 16px;
      transform: rotate(20deg);
      z-index: -1;
    }
    .about-image img {
      width: 100%;
      height: 100%;
      min-height: 328px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
    }
    .about-image-badge {
      position: absolute;
      top: 34px;
      left: 34px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(28,28,28,.85);
      backdrop-filter: blur(4px);
      padding: 10px 16px 10px 10px;
      border-radius: 10px;
      font-weight: 800;
      font-size: 15px;
      color: var(--white);
    }
    .about-image-badge img { width: 24px; height: 24px; min-height: 0; border-radius: 0; }
    .about-image-badge span { color: var(--orange); }
    .about-image-cta {
      position: absolute;
      left: 34px;
      right: 34px;
      bottom: 34px;
      background: var(--white);
      color: var(--dark);
      text-align: center;
      padding: 14px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: var(--shadow);
      transition: background .2s, color .2s;
    }
    .about-image-cta:hover { background: var(--dark); color: var(--white); }

    /* ── PRODUKTE ── */
    #produkte {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    #produkte::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 20% 0%, rgba(233,84,32,.14) 0%, transparent 70%);
      pointer-events: none;
    }
    #produkte .container { position: relative; z-index: 1; }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .product-card {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .25s, transform .2s, box-shadow .2s;
      background: var(--dark-alt);
    }
    
    .product-card-header {
      background: var(--white);
      padding: 32px 32px 28px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .product-card-icon {
      width: 52px;
      height: 52px;
      background: var(--orange);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--white);
      margin-bottom: 16px;
    }
    .product-card-header h3 {
      font-size: 22px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 6px;
    }
    .product-card-header p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .product-card-badge {
      position: absolute;
      top: 24px; right: 24px;
      background: rgba(233,84,32,.08);
      border: 1px solid rgba(233,84,32,.4);
      color: var(--orange);
      font-size: 10px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 20px;
      letter-spacing: .5px;
    }
    .product-card-badge.dev {
      background: rgba(0,0,0,.04);
      border-color: var(--border);
      color: #999;
    }
    .product-card-body { padding: 28px 32px; }
    .product-feature-list {
      list-style: none;
      margin-bottom: 24px;
    }
    .product-feature-list li {
      font-size: 13px;
      color: #ccc;
      padding: 8px 0;
      padding-left: 18px;
      position: relative;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .product-feature-list li:last-child { border-bottom: none; }
    .product-feature-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--orange);
      font-weight: 800;
      font-size: 11px;
    }

    /* ── VORTEILE (Bild + Feature-Liste) ── */
    .benefits-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }
    .benefits-header .section-title { margin-bottom: 0; }
    .benefits-header .section-lead { max-width: 380px; }
    .benefits-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .benefits-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-image img {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  display: block;
}
    .benefits-list {
      display: flex;
      flex-direction: column;
    }
    .benefit-row {
      display: flex;
      gap: 20px;
      padding: 22px 0;
      border-top: 1px solid var(--border);
    }
    .benefit-row:first-child { border-top: none; padding-top: 0; }
    .benefit-row:last-child { padding-bottom: 0; }
    .benefit-icon {
      width: 46px; height: 46px;
      background: rgba(233,84,32,.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--orange);
      flex-shrink: 0;
    }
    .benefit-row h3 { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
    .benefit-row p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ── BRANCHEN ── */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .industry-card {
      display: flex;
      align-items: center;
      gap: 22px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      text-align: left;
      box-shadow: var(--shadow);
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    
    .industry-card-icon {
      width: 150px;
      height: 120px;
      border-radius: 10px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .industry-card-icon img { width: 100%; height: 100%; object-fit: cover; }
    .industry-card h3 { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
    .industry-card p { font-size: 13px; color: var(--text-muted); }

    /* ── TESTIMONIAL ── */
    .testimonial {
      background: var(--dark);
      padding: 90px 24px;
      text-align: center;
    }
    .testimonial-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
    }
    .testimonial-body {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 16px;
      max-width: 760px;
      margin: 0 auto;
    }
    .testimonial-icon {
      font-size: 44px;
      color: var(--orange);
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
      opacity: .9;
    }
    .testimonial blockquote {
      margin: 0;
    }
    .testimonial blockquote p {
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 0;
      font-style: normal;
    }
    .testimonial cite {
      display: block;
      margin-top: 22px;
      font-size: 13px;
      color: #888;
      font-style: normal;
    }
    @media (max-width: 600px) {
      .testimonial-icon { font-size: 30px; }
      .testimonial blockquote p { font-size: 19px; }
    }

    /* ── CTA / KONTAKT ── */
    .cta-section {
      background: linear-gradient(135deg, #1e2a3a 0%, var(--dark) 100%);
      padding: 90px 24px;
    }
    .cta-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }
    .cta-left h2 {
      font-size: 38px;
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .cta-left h2 span { color: var(--orange); }
    .cta-left p {
      font-size: 15px;
      color: #aaa;
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .cta-contact-info {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .cta-contact-info a {
      color: #aaa;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color .2s;
    }
    .cta-contact-info a:hover { color: var(--orange); }
    .cta-contact-info i { color: var(--orange); width: 16px; }

    .cta-left-image {
  margin-top: 32px;
  max-width: 285px;
}

.cta-left-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


    /* Form */
    .form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-field { display: flex; flex-direction: column; gap: 5px; }
    .form-field label {
      font-size: 12px;
      font-weight: 700;
      color: #aaa;
      letter-spacing: .5px;
      text-transform: uppercase;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      background: rgba(255,255,255,.07);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 11px 14px;
      color: var(--white);
      font-family: 'Noto Sans', sans-serif;
      font-size: 14px;
      transition: border-color .2s;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      outline: none;
      border-color: var(--orange);
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: #555; }
    .form-field select option { background: var(--dark); }
    .form-field textarea { resize: vertical; min-height: 110px; }
    #nachricht {
  min-height: 205px;
}
    .honeypot { display: none; }

    /* ── KONTAKT (helles Layout: Formular + Bild) ── */
    .cta-section.cta-light {
      background: var(--white);
      padding: 90px 0;
    }
    .cta-light .cta-inner {
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: stretch;
      margin-top: 48px;
    }
    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      box-shadow: var(--shadow);
    }
    .cta-image {
      border-radius: 16px;
      overflow: hidden;
      min-height: 100%;
    }
    .cta-image img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      display: block;
    }
    /* Helle Formularfelder innerhalb des Kontaktformular-Cards */
    .form-light .form-field label {
      color: var(--dark);
      text-transform: none;
      letter-spacing: 0;
      font-weight: 600;
      font-size: 13px;
    }
    .form-light .form-field input,
    .form-light .form-field textarea,
    .form-light .form-field select {
      background: var(--white);
      border: 1.5px solid var(--border);
      color: var(--dark);
    }
    .form-light .form-field input::placeholder,
    .form-light .form-field textarea::placeholder { color: #999; }
    .form-light .form-field select option { background: var(--white); color: var(--dark); }

    /* ── FAQ ── */
    .faq { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 18px 40px 18px 0;
      font-family: 'Noto Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      cursor: pointer;
      position: relative;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--orange); }
    .faq-q::after {
      content: '+';
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 22px;
      font-weight: 400;
      color: var(--orange);
      transition: transform .2s;
    }
    .faq-item.active .faq-q::after { content: '–'; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .faq-item.active .faq-a { max-height: 200px; }
    .faq-a p {
      padding-bottom: 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── FAQ (dunkle Box-Variante) ── */
    #faq { background: var(--dark); }
    .faq-dark { display: flex; flex-direction: column; gap: 12px; }
    .faq-dark .faq-item {
      background: var(--dark-alt);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 10px;
      padding: 0 22px;
      transition: border-color .2s, background .2s;
    }
    .faq-dark .faq-item.active {
      border-color: var(--orange);
      background: rgba(233,84,32,.08);
    }
    .faq-dark .faq-q {
      color: var(--white);
      padding: 18px 34px 18px 0;
    }
    .faq-dark .faq-q:hover { color: var(--orange); }
    .faq-dark .faq-q::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 13px;
      right: 2px;
    }
    .faq-dark .faq-item.active .faq-q::after {
      content: '\f078';
      transform: translateY(-50%) rotate(180deg);
    }
    .faq-dark .faq-a p {
      color: #aaa;
      padding-bottom: 20px;
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--dark);
      padding: 64px 24px 32px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: start;
      padding-bottom: 32px;
    }
    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .footer-brand .nav-logo { margin-bottom: 4px; }
    .footer-brand p { font-size: 13px; color: #666; line-height: 1.65; margin-top: 14px; max-width: 320px; }
    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 56px;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 13px; color: #ccc; transition: color .2s; }
    .footer-col ul a:hover { color: var(--orange); }

    .footer-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      min-height: 130px;
      gap: 24px;
      text-align: right;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #ccc;
      transition: color .2s;
    }
    .footer-contact a:hover { color: var(--orange); }
    .footer-contact i {
      color: var(--orange);
      width: 16px;
      text-align: center;
    }
    .footer-copyright {
      font-size: 12px;
      color: #555;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: #555;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 32px; height: 32px;
      background: #2a2a2a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-size: 13px;
      transition: background .2s, color .2s;
    }
    .footer-social a:hover { background: var(--orange); color: var(--white); }
    /* ── MODAL ── */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.6);
      z-index: 9000;
      align-items: center;
      justify-content: center;
    }
    .modal[style*="block"] { display: flex; }
    .modal__inner {
      background: var(--white);
      border-radius: 10px;
      padding: 40px 48px;
      text-align: center;
      max-width: 380px;
      width: 90%;
    }
    .modal__inner h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
    .modal__inner p { color: var(--text-muted); margin-bottom: 24px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero .container { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .hero h1 { font-size: 38px; }
      .about-grid { grid-template-columns: 1fr; }
      .about-image { min-height: 320px; order: -1; }
      .products-grid { grid-template-columns: 1fr; }
      .benefits-header { flex-direction: column; align-items: flex-start; }
      .benefits-content { grid-template-columns: 1fr; gap: 32px; }
      .benefits-image img { height: 280px; }
      .industries-grid { grid-template-columns: 1fr; }
      .industry-card-icon { width: 120px; height: 100px; }
      .cta-inner { grid-template-columns: 1fr; gap: 32px; }
      .cta-light .cta-inner { grid-template-columns: 1fr; }
      .cta-image img { min-height: 240px; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .footer-meta { align-items: flex-start; text-align: left; min-height: 0; }
      .footer-contact { align-items: flex-start; }
      .footer-links { grid-template-columns: repeat(3, 1fr); gap: 24px; }
      .topbar .container { padding: 0 24px; }
      .nav { display: none; }
      .nav.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 12px 24px 20px;
        border-top: 1px solid #2a2a2a;
        gap: 2px;
      }
      .nav.active a {
        padding: 10px 0;
      }
      .nav.active .nav-cta {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
      }
      .menu-toggle { display: block; }
    }
    @media (max-width: 600px) {
      .topbar { height: 56px; }
      .topbar .container { height: 56px; padding: 0 16px; }
      .brand { font-size: 18px; }
      .brand span { font-size: 14px; }
      .nav.active { top: 56px; padding-left: 16px; padding-right: 16px; }
      .menu-toggle { font-size: 20px; }

      .industry-card { flex-direction: column; text-align: center; }
      .industry-card-icon { width: 100%; height: 150px; }
      .form-row { grid-template-columns: 1fr; }
      .hero h1 { font-size: 30px; }
      .section-title { font-size: 26px; }
      .cta-left-image {
      margin-left: auto;
      margin-right: auto;
}
      .footer-links { grid-template-columns: 1fr; gap: 20px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 14px; }
    }

/* =========================================================
   Musterlayout 2026
   Rein visuelle Anpassungen. Funktionsselektoren und Scripts
   der Seite bleiben unverändert.
   ========================================================= */
:root {
  --orange: #f25a2b;
  --orange-dark: #d8481e;
  --dark: #1f1f1f;
  --dark-alt: #292929;
  --bg-alt: #f7f7f6;
  --border: #ece7e3;
  --shadow: 0 8px 28px rgba(40, 27, 20, .08);
}

body { font-family: 'Poppins', 'Noto Sans', sans-serif; line-height: 1.55; }
.container { max-width: 1120px; }
.section { padding: 76px 0; }
.section-header { margin-bottom: 38px; }
.section-eyebrow { margin-bottom: 7px; font-size: 10px; letter-spacing: 1.5px; }
.section-title { max-width: 680px; font-size: 31px; line-height: 1.18; }
.section-header.center .section-title { margin-left: auto; margin-right: auto; }
.section-lead { font-size: 14px; }

.topbar { height: 58px; background: #202020; }
.topbar .container { height: 58px; max-width: 1120px; padding: 0 24px; }
.brand { font-size: 17px; gap: 7px; }
.brand span { font-size: 17px; }
.brand-icon { width: 25px; height: 25px; }
.nav { gap: 25px; }
.nav a { font-size: 12px; }
.nav .nav-cta { padding: 7px 17px; border-radius: 4px; }

.hero {
  min-height: 520px;
  padding: 72px 24px 64px;
  background: linear-gradient(115deg, #1d1d1d 0%, #211d1b 54%, #2b1a14 100%);
}
.hero::before { background: radial-gradient(circle at 78% 45%, rgba(242,90,43,.20), transparent 44%); }
.hero-inner { max-width: 1120px; grid-template-columns: 1.05fr .95fr; gap: 46px; }
.hero-badge { padding: 0; border: 0; background: none; border-radius: 0; font-size: 10px; margin-bottom: 14px; }
.hero-badge::before { display: none; }
.hero h1 { max-width: 520px; font-size: clamp(42px, 5vw, 60px); line-height: 1.08; margin-bottom: 18px; }
.hero p { max-width: 500px; margin-bottom: 25px; font-size: 15px; line-height: 1.7; color: #c5c5c5; }
.hero-stats { gap: 48px; margin-bottom: 28px; }
.stat-item .stat-num { font-size: 24px; }
.stat-item .stat-label { font-size: 9px; color: #aaa; }
.hero-btns { gap: 12px; }
.hero-btns .btn-primary, .hero-btns .btn-secondary { padding: 11px 20px; border-radius: 4px; font-size: 12px; }
.hero-phone {
  width: min(100%, 430px);
  padding: 13px 13px 26px;
  background: linear-gradient(#676767, #303030);
  border: 4px solid #555;
  border-bottom-width: 12px;
  border-radius: 10px 10px 5px 5px;
  box-shadow: 0 24px 45px rgba(0,0,0,.5);
}
.hero-phone::after {
  content: '';
  position: absolute;
  left: -8%; right: -8%; bottom: -21px;
  height: 14px;
  background: linear-gradient(#b6b6b6, #555);
  border-radius: 2px 2px 12px 12px;
}
.hero-phone img { width: 100%; max-width: none; min-height: 220px; object-fit: contain; background: #f4f4f4; border-radius: 1px; filter: none; }
.usp-strip { display: none; }

#ueber-uns { background: #fff; }
.about-grid { gap: 34px; align-items: center; }
.about-text { gap: 12px; }
.about-card { padding: 20px 22px; border-color: #f0e8e4; border-radius: 9px; box-shadow: 0 5px 20px rgba(50,30,20,.05); }
.about-card-label { font-size: 11px; }
.about-card p { font-size: 12px; }
.about-values { grid-template-columns: 1fr 1fr; gap: 9px 18px; }
.value-item span { font-size: 11px; }
.about-image { min-height: 420px; padding: 13px; border-radius: 10px; }
.about-image img { min-height: 394px; border-radius: 6px; }
.about-image-badge { top: 26px; left: 26px; padding: 7px 11px 7px 7px; border-radius: 5px; font-size: 12px; }
.about-image .about-image-badge img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
}
.about-image-cta { left: 26px; right: 26px; bottom: 26px; padding: 11px; border-radius: 4px; font-size: 11px; }

.benefits-header { margin-bottom: 36px; }
.benefits-content { gap: 42px; }
.benefits-image img { height: 330px; border-radius: 8px; }
.benefit-row { gap: 16px; padding: 18px 0; }
.benefit-icon { width: 38px; height: 38px; border-radius: 50%; font-size: 14px; }
.benefit-row h3 { font-size: 14px; }
.benefit-row p { font-size: 12px; }

#produkte { background: linear-gradient(115deg, #202020 0%, #24211f 60%, #2d1c16 100%); }
#produkte .section-title, #produkte .section-lead { color: #fff; }
.products-grid { gap: 22px; max-width: 900px; margin: 0 auto; }
.product-card { border-radius: 10px; }
.product-card-header { padding: 25px 27px 22px; }
.product-card-icon { width: 42px; height: 42px; border-radius: 50%; font-size: 17px; }
.product-card-header h3 { font-size: 18px; }
.product-card-header p, .product-feature-list li { font-size: 11px; }
.product-card-body { padding: 21px 27px 25px; }
.product-card .btn { padding: 10px 18px; border-radius: 4px; font-size: 11px; }

#branchen { background: #fff; }
.industries-grid { gap: 18px; max-width: 930px; margin: 0 auto; }
.industry-card { gap: 16px; padding: 13px; border-radius: 8px; }
.industry-card-icon { width: 135px; height: 90px; border-radius: 6px; }
.industry-card h3 { font-size: 14px; }
.industry-card p { font-size: 11px; }

.testimonial { padding: 62px 24px; background: linear-gradient(110deg, #202020, #291b17); }
.testimonial-eyebrow { margin-bottom: 13px; font-size: 9px; }
.testimonial-icon { font-size: 30px; }
.testimonial blockquote p { max-width: 660px; font-size: 21px; }
.testimonial cite { margin-top: 14px; font-size: 10px; }

/* ── KUNDENLOGOS ── */
.customer-logos {
  padding: 64px 0;
  background: linear-gradient(110deg, #202020, #291b17);
}
.customer-logos .section-header { margin-bottom: 30px; }
.customer-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.customer-logo-card {
  height: 150px;
  padding: 28px 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.customer-logo-card-dark { background: #181818; }
.customer-logo-card-light { background: #fff; }
.customer-logo-card img {
  width: 100%;
  height: 100%;
  max-width: 280px;
  object-fit: contain;
}

.cta-section.cta-light { padding: 76px 0; }
.cta-light .cta-inner { gap: 30px; margin-top: 34px; }
.form-card { padding: 25px; border-radius: 9px; }
.form { gap: 11px; }
.form-row { gap: 11px; }
.form-light .form-field label { font-size: 11px; }
.form-field input, .form-field textarea, .form-field select { padding: 9px 11px; border-radius: 4px; font-size: 12px; }
#nachricht { min-height: 115px; }
.form-card .btn { padding: 11px !important; border-radius: 4px; font-size: 11px; }
.cta-image { border-radius: 8px; }

#faq { padding: 72px 0; background: linear-gradient(120deg, #202020, #271b17); }
#faq .section-header { margin-bottom: 30px !important; }
.faq { max-width: 720px; }
.faq-dark { gap: 8px; }
.faq-dark .faq-item { border-radius: 5px; padding: 0 18px; }
.faq-dark .faq-q { padding: 14px 30px 14px 0; font-size: 12px; }
.faq-a p { font-size: 11px; }

.footer { padding: 48px 24px 26px; background: #202020; }
.footer-top { gap: 44px; }
.footer-left { gap: 28px; }
.footer-links { gap: 45px; }
.footer-brand p, .footer-col ul a, .footer-contact a { font-size: 11px; }
.footer-col h4, .footer-copyright { font-size: 9px; }

@media (max-width: 960px) {
  .section { padding: 62px 0; }
  .hero { min-height: auto; padding: 58px 24px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .topbar, .topbar .container { height: 54px; }
  .nav.active { top: 54px; }
  .hero { padding: 44px 18px 48px; }
  .hero h1 { font-size: 35px; }
  .hero p { font-size: 13px; }
  .hero-stats { width: 100%; justify-content: space-between; gap: 12px; }
  .stat-item .stat-num { font-size: 20px; }
  .hero-btns { width: 100%; flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-phone { width: 88%; }
  .hero-phone img { min-height: 150px; }
  .section-title { font-size: 25px; }
  .about-image { min-height: 350px; order: initial; }
  .about-image img { min-height: 324px; }
  .products-grid, .industries-grid { grid-template-columns: 1fr; }
  .industry-card { flex-direction: row; text-align: left; }
  .industry-card-icon { width: 108px; height: 80px; }
  .testimonial blockquote p { font-size: 18px; }
  .customer-logos-grid { grid-template-columns: 1fr; }
  .customer-logo-card { height: 130px; padding: 24px 32px; }
  .cta-image img { min-height: 260px; }
}

/* Einheitliches MainturaTECH Logo in Navigation und Footer */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
  text-decoration: none;
}
.site-brand .brand-icon {
  width: 31px;
  height: 31px;
  min-width: 31px;
  object-fit: contain;
}
.site-brand .site-brand-name {
  color: #111;
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}
.site-brand .site-brand-name span {
  color: var(--orange);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: .02em;
}
.footer .site-brand .site-brand-name { color: #fff; }
.footer-site-brand { margin-bottom: 4px; }
@media (max-width: 600px) {
  .site-brand .brand-icon { width: 27px; height: 27px; min-width: 27px; }
  .site-brand .site-brand-name { font-size: 18px; }
}

/* =========================================================
   Helles Industrie-Layout
   Visuell an modernen Industrial-Tech-Auftritten orientiert.
   ========================================================= */
:root {
  --orange: #ff5a2f;
  --orange-dark: #df3f19;
  --dark: #111111;
  --dark-alt: #1b1b1b;
  --white: #ffffff;
  --bg-alt: #f2f2f0;
  --text-muted: #585858;
  --border: #dcdcd8;
  --shadow: 0 14px 38px rgba(0, 0, 0, .07);
}

body { background: #fff; color: #111; }
.container { max-width: 1240px; padding-left: 32px; padding-right: 32px; }
.section { padding: 108px 0; }
.section-header { margin-bottom: 58px; }
.section-eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
}
.section-title {
  max-width: 820px;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
}
.section-lead { max-width: 680px; font-size: 17px; line-height: 1.65; }

.topbar {
  height: 76px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e5e5e2;
  backdrop-filter: blur(12px);
}
.topbar .container { height: 76px; max-width: 1240px; padding: 0 32px; }
.brand { color: #111; font-size: 20px; }
.brand span { color: var(--orange); font-size: 20px; }
.brand-icon { width: 31px; height: 31px; }
.nav { background: transparent; gap: 30px; }
.topbar .nav { position: static; height: auto; padding: 0; }
.nav a { color: #191919; font-size: 13px; font-weight: 650; }
.nav a:hover, .nav a.active { color: var(--orange); }
.nav .nav-cta {
  padding: 12px 21px;
  color: #fff !important;
  background: var(--orange);
  border-radius: 0;
}
.menu-toggle { color: #111; }

.hero {
  min-height: 720px;
  padding: 92px 32px;
  background: #111;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(17,17,17,.98) 0%, rgba(17,17,17,.88) 45%, rgba(17,17,17,.24) 100%),
    radial-gradient(circle at 82% 40%, rgba(255,90,47,.34), transparent 42%);
}
.hero-inner { max-width: 1240px; grid-template-columns: 1.05fr .95fr; gap: 72px; }
.hero-badge {
  color: #ff7b59;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  margin-bottom: 22px;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .93;
  margin-bottom: 30px;
}
.hero p { max-width: 620px; color: #d2d2d2; font-size: 17px; line-height: 1.7; }
.hero-stats { gap: 56px; margin: 35px 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.stat-item .stat-num { color: #fff; font-size: 22px; }
.stat-item .stat-label { color: #ff7b59; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; }
.hero-btns .btn-primary, .hero-btns .btn-secondary {
  min-height: 52px;
  padding: 14px 25px;
  border-radius: 0;
  font-size: 13px;
}
.hero-btns .btn-secondary { border-color: #fff; }
.hero-phone {
  width: min(100%, 500px);
  padding: 14px 14px 29px;
  border-color: #696969;
  border-radius: 4px;
  transform: perspective(1100px) rotateY(-5deg);
}
.hero-phone img { min-height: 280px; }
.hero-device-image {
  width: min(52vw, 760px);
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 50px rgba(0,0,0,.42));
  transform: translateX(3%);
}

#ueber-uns { background: #f2f2f0; }
#ueber-uns .section-header.center { text-align: left; }
#ueber-uns .section-header.center .section-title { margin-left: 0; }
.about-grid { grid-template-columns: .9fr 1.1fr; gap: 70px; }
.about-text { gap: 0; border-top: 1px solid #cfcfca; }
.about-card {
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid #cfcfca;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.about-card-label { font-size: 12px; letter-spacing: 1.3px; }
.about-card p { color: #353535; font-size: 14px; line-height: 1.75; }
.about-values { grid-template-columns: 1fr; gap: 13px; }
.value-dot { border-radius: 0; }
.value-item span { font-size: 13px; }
.about-image { min-height: 540px; padding: 0; background: var(--orange); border-radius: 0; }
.about-image::before { display: none; }
.about-image img { min-height: 540px; border-radius: 0; }
.about-image-badge { display: none; }
.about-image-cta {
  left: 24px; right: 24px; bottom: 24px;
  padding: 16px;
  border-radius: 0;
  color: #fff;
  background: #111;
}

.benefits-header { align-items: flex-start; margin-bottom: 62px; }
.benefits-content { grid-template-columns: 1.1fr .9fr; gap: 72px; }
.benefits-image img { height: 500px; border-radius: 0; box-shadow: none; }
.benefit-row { padding: 29px 0; border-color: #d5d5d1; }
.benefit-icon { width: 48px; height: 48px; border-radius: 0; color: #fff; background: var(--orange); }
.benefit-row h3 { font-size: 19px; }
.benefit-row p { font-size: 14px; }

#produkte { background: #111; }
#produkte::before { background: linear-gradient(135deg, rgba(255,90,47,.17), transparent 38%); }
#produkte .section-header.center { text-align: left; }
#produkte .section-header.center .section-title,
#produkte .section-header.center .section-lead { margin-left: 0; }
.products-grid { max-width: none; gap: 28px; }
.product-card { border: 0; border-radius: 0; background: #202020; }

.product-card-header { min-height: 280px; padding: 38px; border: 0; background: #f2f2f0; }
.product-card-icon { width: 56px; height: 56px; border-radius: 0; }
.product-card-header h3 { font-size: 28px; letter-spacing: -.03em; }
.product-card-header p { font-size: 14px; }
.product-card-badge { top: 30px; right: 30px; border-radius: 0; }
.product-card-body { padding: 32px 38px 38px; }
.product-feature-list li { padding-top: 11px; padding-bottom: 11px; font-size: 13px; }
.product-card .btn { padding: 15px 20px; border-radius: 0; }

#branchen { background: #f2f2f0; }
#branchen .section-header.center { text-align: left; }
#branchen .section-header.center .section-title,
#branchen .section-header.center .section-lead { margin-left: 0; }
.industries-grid { max-width: none; gap: 24px; }
.industry-card { padding: 0; gap: 0; border: 0; border-radius: 0; box-shadow: none; background: #fff; }

.industry-card-icon { width: 48%; height: 190px; border-radius: 0; }
.industry-card > div:last-child { padding: 24px; }
.industry-card h3 { font-size: 20px; }
.industry-card p { font-size: 13px; }

.customer-logos { padding: 82px 0; background: #fff; }
.customer-logos .section-header { text-align: left; }
.customer-logos .section-header .section-title { margin-left: 0; color: #111; }
.customer-logos-grid { max-width: none; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.customer-logo-card { height: 185px; padding: 38px 60px; border: 1px solid #dcdcd8; border-radius: 0; }
.customer-logo-card-dark { background: #111; }
.customer-logo-card-light { background: #f2f2f0; }

.cta-section.cta-light { padding: 108px 0; background: var(--orange); }
.cta-light .section-eyebrow { color: #111; }
.cta-light .section-title { color: #111; }
.cta-light .section-lead { color: #282828; }
.cta-light .cta-inner { gap: 0; margin-top: 56px; }
.form-card { padding: 42px; border: 0; border-radius: 0; box-shadow: none; }
.form-field input, .form-field textarea, .form-field select { border-radius: 0; }
.form-card .btn { border-radius: 0; background: #111; }
.form-card .btn:hover { background: #2d2d2d; }
.cta-image { border-radius: 0; }

#faq { padding: 104px 0; background: #f2f2f0; }
#faq .section-header.center { text-align: left; }
#faq .section-header.center .section-title { margin-left: 0; color: #111; }
.faq { max-width: none; }
.faq-dark { gap: 0; border-top: 1px solid #cfcfca; }
.faq-dark .faq-item, .faq-dark .faq-item.active {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #cfcfca;
  border-radius: 0;
  background: transparent;
}
.faq-dark .faq-q { padding: 24px 44px 24px 0; color: #111; font-size: 16px; }
.faq-dark .faq-a p { color: #555; font-size: 14px; }

.footer { padding: 72px 32px 34px; background: #111; }
.footer-inner { max-width: 1176px; }
.footer-col h4 { color: #ff7b59; }

@media (max-width: 960px) {
  .section { padding: 82px 0; }
  .topbar, .topbar .container { height: 66px; }
  .nav.active { top: 66px; background: #fff; border-color: #ddd; }
  .topbar .nav.active { position: absolute; }
  .hero { min-height: auto; padding: 78px 32px; }
  .hero-inner { gap: 64px; }
  .hero h1 { font-size: clamp(54px, 10vw, 78px); }
  .hero-phone { transform: none; }
  .hero-device-image {
    width: min(92vw, 760px);
    margin: 0 auto;
    transform: none;
  }
  .about-grid, .benefits-content { grid-template-columns: 1fr; }
  .about-image { order: initial; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 68px 0; }
  .topbar, .topbar .container { height: 60px; }
  .topbar .container { padding: 0 20px; }
  .nav.active { top: 60px; }
  .hero { padding: 62px 20px; }
  .hero h1 { font-size: 48px; }
  .hero-stats { gap: 18px; }
  .hero-phone { width: 100%; }
  .hero-device-image { width: 100%; }
  .section-title { font-size: 38px; }
  .about-image, .about-image img { min-height: 410px; }
  .benefits-image img { height: 330px; }
  .industry-card { flex-direction: column; align-items: stretch; }
  .industry-card-icon { width: 100%; height: 190px; }
  .customer-logos-grid { grid-template-columns: 1fr; }
  .customer-logo-card { height: 145px; padding: 28px 42px; }
  .cta-section.cta-light { padding: 68px 0; }
  .form-card { padding: 28px 22px; }
  #faq { padding: 68px 0; }
}

/* Finale Priorität für die gemeinsame Wortmarke */
.topbar .site-brand .site-brand-name,
.footer .site-brand .site-brand-name { color: #111; font-size: 20px; font-weight: 800; }
.topbar .site-brand .site-brand-name span,
.footer .site-brand .site-brand-name span { color: var(--orange); font-size: inherit; font-weight: 800; }
.footer .site-brand .site-brand-name { color: #fff; }
@media (max-width: 600px) {
  .topbar .site-brand .site-brand-name,
  .footer .site-brand .site-brand-name { font-size: 18px; }
}

/* Einheitlicher Footer nach NormPro-Vorlage */
.footer { background: #111; padding: 60px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 28px;
}
.footer-brand p { max-width: none; margin-top: 0; font-size: 13px; color: #666; line-height: 1.65; }
.footer-col h4 { color: #ff7b59; }
.footer-col ul { gap: 8px; }
.footer-col ul a { color: #777; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #555; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #888; background: #2a2a2a; border-radius: 50%;
}
.footer-social a:hover { color: #fff; background: var(--orange); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer { padding: 40px 16px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* Mobile: Hero-Bild ausblenden */
@media (max-width: 600px) {
  .hero-visual { display: none !important; }
}


/* =========================================================
   HERO HEADER – Werkstattbild
   NUR Header/Hero angepasst
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background-color: #111;
  background-image: url('images/Hero_Background.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Lesbarkeit links */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(17,17,17,.96) 0%,
      rgba(17,17,17,.90) 30%,
      rgba(17,17,17,.62) 48%,
      rgba(17,17,17,.22) 68%,
      rgba(17,17,17,.04) 100%
    );
}

/* Das neue Werkstattbild enthält Laptop + Smartphone bereits */
.hero-visual {
  display: none !important;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* Smartphone: bewusst kein Hintergrundbild */
@media (max-width: 600px) {
  .hero {
    background-image: none;
    background-color: #111;
  }

  .hero::before {
    background:
      radial-gradient(
        circle at 85% 18%,
        rgba(255,90,47,.18),
        transparent 42%
      );
  }
}
