/* =========================================================
   style-maintinuum-clean.css
   MainturaTECH – Maintinuum Produktseite
   Header/Hero optisch an NormPro angeglichen
   ========================================================= */

/* Fonts */
@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;
}

/* Base */
:root {
  --orange: #E95420;
  --orange-light: #ff6b3d;
  --orange-dark: #c8421a;
  --dark: #1C1C1C;
  --white: #FFFFFF;
  --bg: #f4f4f4;
  --text: #1C1C1C;
  --muted: #666;
  --border: #e0e0e0;
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav wie NormPro */
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-weight: 800;
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav-logo span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .5px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

nav ul a {
  color: #ccc;
  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: 4px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--orange-dark);
}

/* Hero wie NormPro */
.hero {
  background: var(--dark);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 72% 50%,
    rgba(232, 81, 26, .12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 81, 26, .15);
  border: 1px solid rgba(232, 81, 26, .4);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 62px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: #aaa;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn,
.plan-btn,
.store-btn {
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid #555;
  transition: border-color .2s, color .2s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  transition: background .2s, color .2s, transform .15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.real-laptop,
.hero-laptop,
.real-Laptop,
.hero-Laptop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
}

.real-laptop img,
.hero-laptop img,
.real-Laptop img,
.hero-Laptop img {
  width: min(900px, 58vw);
  max-width: none;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transform: translateX(35px);
  transform-origin: center center;
  filter:
    drop-shadow(0 0 60px rgba(233, 84, 32, .22))
    drop-shadow(0 40px 80px rgba(0, 0, 0, .45));
}



/* Legacy-Hero-Klassen, falls die alte maintinuum.html noch aktiv ist */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 81, 26, .15);
  border: 1px solid rgba(232, 81, 26, .4);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-lead {
  color: #aaa;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stat {
  background: transparent;
  padding: 0;
  text-align: left;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid #555;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* USP */
.usp-strip {
  background: var(--orange);
  color: var(--white);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.usp-strip span {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  opacity: .9;
  letter-spacing: .5px;
}

.usp-strip i {
  margin-right: 6px;
}

.usp-strip .sep {
  color: rgba(255,255,255,.4);
}

/* Sections */
section {
  width: 100%;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg);
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}

.section-title.light {
  color: var(--white);
}

.section-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

.section-header.center .section-lead {
  margin: 0 auto;
}

/* Cards */
.cards-3,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.feature-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}



.card-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,81,26,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 18px;
}

.card h3,
.feature-item h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.card p,
.feature-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Versionen */
.version-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.version-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}


.version-panel-pro {
  border-color: var(--orange);
}

.version-panel-header {
  background: var(--dark);
  color: var(--white);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}

.version-panel-pro .version-panel-header {
  background: linear-gradient(135deg, #1C1C1C 60%, #2a1408);
}

.version-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.version-badge.available {
  background: rgba(232,81,26,.18);
  color: var(--orange-light);
}

.version-badge.dev {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}

.version-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 10px;
}

.version-panel-header h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.version-panel-header h3 strong {
  font-weight: 900;
}

.version-panel-header p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.version-panel-body {
  padding: 28px;
}

.version-features {
  list-style: none;
  margin-bottom: 28px;
}

.version-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
}

.version-features li i {
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.version-features li i.fa-check,
.icon-ok {
  color: var(--orange);
}

.version-features li.na,
.version-features li.coming,
.icon-no,
.icon-soon {
  color: #aaa;
}

/* Vergleich */
.table-scroll {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.compare-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 8px 0 0;
}



.th-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.th-badge.available {
  background: rgba(232,81,26,.18);
  color: var(--orange);
}

.th-badge.dev {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
}

/* Branchen */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}



.industry-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 13px;
  color: var(--muted);
}

/* Testimonial */
.testimonial {
  background: var(--dark);
  padding: 70px 24px;
  text-align: center;
}

.testimonial-icon {
  color: var(--orange);
  font-size: 30px;
  margin-bottom: 22px;
  opacity: .65;
}

.testimonial blockquote p {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.55;
}

.testimonial cite {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-style: normal;
}

/* Kontakt */
.cta-section {
  background: var(--bg);
  padding: 90px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.cta-left h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-left h2 span {
  color: var(--orange);
}

.cta-left > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.cta-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.cta-hl i,
.cta-contact a {
  color: var(--orange);
}

.cta-contact a {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  color: #444;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.honeypot {
  display: none !important;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal[style*="block"] {
  display: flex;
}

.modal__inner {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  max-width: 420px;
  text-align: center;
}

.modal__inner h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal__inner p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--orange);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 18px;
}

.faq-item.active .faq-a {
  display: block;
}

.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--dark);
  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;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 28px;
}

.footer-logo,
.nav-logo {
  font-weight: 800;
}

.footer-logo {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 13px;
  color: #777;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
}

.footer-social {
  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:hover {
  background: var(--orange);
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  nav ul {
    gap: 18px;
  }

  .hero {
    padding: 60px 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 46px;
  }

  .cards-3,
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .version-panels,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .industries-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0 16px;
    height: 56px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-logo span {
    font-size: 14px;
  }

  nav ul {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 16px 56px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 18px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .stat-item .stat-num {
    font-size: 24px;
  }

  .stat-item .stat-label {
    font-size: 11px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .usp-strip {
    padding: 14px 16px;
    gap: 10px 20px;
    justify-content: flex-start;
  }

  .usp-strip span {
    font-size: 12px;
  }

  .usp-strip .sep {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-lead {
    font-size: 14px;
  }

  .cards-3,
  .features-grid,
  .industries-grid,
  .form-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .version-panel-body,
  .form {
    padding: 24px 20px;
  }

  .cta-left h2 {
    font-size: 34px;
  }

  .testimonial blockquote p {
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* 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: 12px; }
@media (max-width: 600px) {
  .site-brand .brand-icon { width: 27px; height: 27px; min-width: 27px; }
  .site-brand .site-brand-name { font-size: 18px; }
}

/* =========================================================
   MainturaTECH Industrial Theme 2026
   Konsistent mit der überarbeiteten Startseite
   ========================================================= */
:root {
  --orange: #ff5a2f;
  --orange-light: #ff7b59;
  --orange-dark: #df3f19;
  --dark: #111111;
  --white: #ffffff;
  --bg: #f2f2f0;
  --text: #111111;
  --muted: #585858;
  --border: #d5d5d0;
  --radius: 0;
}

body { color: #111; background: #fff; }
.container { max-width: 1240px; padding-left: 32px; padding-right: 32px; }

nav {
  height: 76px;
  padding: 0 max(32px, calc((100vw - 1176px) / 2));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e5e5e2;
  backdrop-filter: blur(12px);
}
.nav-logo { color: #111; font-size: 20px; }
.nav-logo span { color: var(--orange); font-size: 16px; }
nav ul { gap: 30px; }
nav ul a { color: #191919; font-size: 13px; font-weight: 650; }
nav ul a:hover, nav ul a.active { color: var(--orange); }
.nav-cta { padding: 12px 21px; border-radius: 0; }

.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,.84) 48%, rgba(17,17,17,.18) 100%),
    radial-gradient(circle at 82% 40%, rgba(255,90,47,.34), transparent 44%);
}
.hero-inner { max-width: 1240px; grid-template-columns: 1.04fr .96fr; gap: 72px; }
.hero-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ff7b59;
  font-size: 12px;
  letter-spacing: 2.2px;
  margin-bottom: 22px;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.1vw, 90px);
  line-height: .94;
  letter-spacing: -.055em;
  margin-bottom: 30px;
}
.hero p { max-width: 620px; color: #d1d1d1; font-size: 17px; line-height: 1.7; }
.hero-stats { gap: 54px; 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.1px; }
.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; }
.real-laptop { border-radius: 3px; transform: perspective(1100px) rotateY(-5deg); }
.real-laptop img { border-radius: 2px; }

.usp-strip { display: none; }
.section { padding: 108px 0; }
.section-alt { background: #f2f2f0; }
.section-header { margin-bottom: 58px; }
.section-header.center { text-align: left; }
.section-header.center .section-lead { margin-left: 0; }
.eyebrow { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 2.4px; }
.section-title {
  max-width: 850px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-lead { max-width: 690px; color: #585858; font-size: 17px; line-height: 1.65; }

.cards-3 { gap: 24px; }
.card {
  min-height: 290px;
  padding: 36px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.card-icon { width: 52px; height: 52px; border-radius: 0; color: #fff; background: var(--orange); }
.card h3 { margin-top: 28px; font-size: 22px; letter-spacing: -.02em; }
.card p { font-size: 14px; }

#funktionen { background: #fff; }
.features-grid { gap: 0; border-top: 1px solid var(--border); }
.feature-item {
  min-height: 260px;
  padding: 34px 28px;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}
.feature-item:nth-child(3n) { border-right: 0; }

.feature-icon { width: 46px; height: 46px; border-radius: 0; color: #fff; background: #111; }
.feature-item h4 { margin-top: 25px; font-size: 18px; }

.version-panels { gap: 28px; }
.version-panel { border: 0; border-radius: 0; box-shadow: none; background: #fff; }

.version-panel-header { min-height: 270px; padding: 38px; border-bottom: 1px solid var(--border); }
.version-panel-pro .version-panel-header { background: #111; }
.version-panel-header h3 { font-size: 29px; }
.version-panel-body { padding: 34px 38px 40px; }
.version-icon { border-radius: 0; }
.version-badge { border-radius: 0; }
.version-features li { padding-top: 11px; padding-bottom: 11px; }
.btn { border-radius: 0; }

.table-scroll { border: 0; border-radius: 0; box-shadow: none; }
.compare-table { border-collapse: collapse; }
.compare-table thead { background: #111; color: #fff; }
.compare-table th { padding: 22px 24px; }
.compare-table td { padding: 18px 24px; border-color: #dddcd7; }
.compare-table tbody tr:nth-child(even) { background: #f2f2f0; }
.th-badge { border-radius: 0; }

.industries-grid { gap: 0; border-top: 1px solid #cecec9; }
.industry-card {
  min-height: 230px;
  padding: 34px 26px;
  border: 0;
  border-right: 1px solid #cecec9;
  border-bottom: 1px solid #cecec9;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.industry-card:last-child { border-right: 0; }
.industry-card:hover { transform: none; background: #fff; box-shadow: none; }
.industry-icon { font-size: 38px; }
.industry-card h3 { margin-top: 25px; font-size: 19px; }

.testimonial { padding: 84px 32px; background: #fff; }
.testimonial-icon { color: var(--orange); }
.testimonial blockquote p { max-width: 860px; color: #111; font-size: 30px; line-height: 1.3; letter-spacing: -.025em; }
.testimonial cite { color: #666; }

.cta-section { padding: 108px 0; background: var(--orange); }
.cta-inner { gap: 0; align-items: stretch; }
.cta-left { padding: 48px; color: #111; background: transparent; }
.cta-left h2, .cta-left h2 span { color: #111; font-size: clamp(44px, 5vw, 68px); letter-spacing: -.045em; }
.cta-left p { color: #2d2d2d; font-size: 16px; }
.cta-highlights { border-color: rgba(0,0,0,.22); }
.cta-hl, .cta-contact a { color: #222; }
.cta-hl i, .cta-contact i { color: #111; }
.form { padding: 44px; border-radius: 0; background: #fff; box-shadow: none; }
.form-field input, .form-field textarea, .form-field select { border-radius: 0; background: #fff; color: #111; border-color: #cecec9; }
.form-field label { color: #111; }
.form .btn-primary { background: #111; }

#faq { background: #f2f2f0; }
.faq { max-width: none; border-top: 1px solid #cecec9; }
.faq-item { border-bottom: 1px solid #cecec9; }
.faq-q { padding: 24px 44px 24px 0; font-size: 16px; }
.faq-a p { font-size: 14px; }

.footer { padding: 72px 32px 34px; background: #111; }
.footer-inner { max-width: 1176px; }
.footer-col h4 { color: #ff7b59; }

@media (max-width: 900px) {
  nav { height: 66px; padding: 0 24px; }
  .hero { min-height: auto; padding: 78px 32px; }
  .hero-inner { gap: 58px; }
  .hero-visual { display: block; }
  .real-laptop { max-width: 680px; margin: 0 auto; transform: none; }
  .section { padding: 82px 0; }
  .feature-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature-item:nth-child(2n) { border-right: 0; }
  .industry-card:nth-child(2n) { border-right: 0; }
}

@media (max-width: 600px) {
  nav { height: 60px; padding: 0 20px; }
  .hero { padding: 62px 20px; }
  .hero h1 { font-size: 48px; }
  .hero-stats { gap: 18px; }
  .section { padding: 68px 0; }
  .container { padding-left: 20px; padding-right: 20px; }
  .section-title { font-size: 38px; }
  .cards-3, .features-grid { grid-template-columns: 1fr; }
  .feature-item, .feature-item:nth-child(2n), .feature-item:nth-child(3n) { border-right: 0; }
  .version-panel-header, .version-panel-body { padding-left: 24px; padding-right: 24px; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card, .industry-card:nth-child(2n) { min-height: 190px; border-right: 0; }
  .testimonial { padding: 68px 20px; }
  .testimonial blockquote p { font-size: 23px; }
  .cta-section { padding: 68px 0; }
  .cta-left, .form { padding: 30px 22px; }
  .cta-left h2, .cta-left h2 span { font-size: 42px; }
  .footer { padding-left: 20px; padding-right: 20px; }
}

/* Finale Priorität für die gemeinsame Wortmarke */
nav .site-brand .site-brand-name,
.footer .site-brand .site-brand-name { color: #111; font-size: 20px; font-weight: 800; }
nav .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) {
  nav .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; width: auto; height: auto; background: transparent; border-radius: 0; }
.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; }
}

/* Branchenbilder analog zur Indexseite */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-top: 0;
}
.industry-card,
.industry-card:nth-child(2n),
.industry-card:last-child {
  min-height: 190px;
  padding: 0;
  display: flex;
  align-items: stretch;
  border: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}
.industry-card:hover { background: #fff; box-shadow: 0 16px 42px rgba(0,0,0,.08); }
.industry-card-image {
  width: 48%;
  min-height: 190px;
  flex: 0 0 48%;
  overflow: hidden;
}
.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-card-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-card .industry-card-content h3 { margin-top: 0; font-size: 20px; }
.industry-card .industry-card-content p { margin-top: 6px; font-size: 13px; }
@media (max-width: 700px) {
  .industries-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .industry-card,
  .industry-card:nth-child(2n) { flex-direction: column; }
  .industry-card-image { width: 100%; min-height: 180px; flex-basis: 180px; }
  .industry-card-content { padding: 22px; }
}

/* Mobile: Hero-Bild ausblenden */
@media (max-width: 600px) {
  .hero-visual { display: none !important; }
}


/* =========================================================
   MAINTINUUM HERO – finaler Hintergrund wie auf index.html
   Bild enthält Maintinuum.Lite (Laptop) und Maintinuum.Pro (Monitor)
   ========================================================= */

.hero {
  position: relative;
  min-height: 720px;
  padding: 92px 32px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-color: #111;
  background-image: url('images/Hero_Backgroun_maintinuum.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(17,17,17,.97) 0%,
      rgba(17,17,17,.91) 27%,
      rgba(17,17,17,.64) 46%,
      rgba(17,17,17,.25) 64%,
      rgba(17,17,17,.05) 82%,
      rgba(17,17,17,0) 100%
    );
}

.hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(100%, 650px);
  position: relative;
  z-index: 3;
}

/* Das neue Hintergrundbild enthält beide Geräte bereits. */
.hero-visual {
  display: none !important;
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    min-height: 650px;
    padding: 78px 32px;
    background-position: 58% center;
  }

  .hero-inner {
    display: block;
    text-align: left;
  }

  .hero-content {
    width: min(100%, 590px);
  }

  .hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-stats,
  .hero-btns {
    justify-content: flex-start;
  }
}

/* Smartphone: wie auf der Startseite bewusst ohne Hintergrundbild */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 62px 20px;
    background-image: none;
    background-color: #111;
  }

  .hero::before {
    background:
      radial-gradient(
        circle at 85% 18%,
        rgba(255,90,47,.18),
        transparent 42%
      );
  }

  .hero-inner {
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats,
  .hero-btns {
    justify-content: center;
  }
}
