:root {
    --navy: #07182c;
    --navy-light: #0d2745;
    --blue: #0869e8;
    --blue-light: #2491ff;
    --white: #ffffff;
    --grey: #eef2f6;
    --text: #122033;
    --muted: #657286;
    --border: rgba(18, 32, 51, 0.12);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  .header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background: rgba(7, 24, 44, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -3px;
    position: relative;
  }
  
  .logo-mark {
    color: var(--blue);
  }
  
  .logo small {
    position: absolute;
    left: 2px;
    top: 34px;
    font-size: 8px;
    letter-spacing: 5px;
  }
  
  .navigation {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .navigation a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    font-size: 14px;
  }
  
  .navigation a:hover {
    color: var(--white);
  }
  
  .nav-button {
    background: var(--blue);
    padding: 13px 20px;
  }
  
  .menu-button {
    display: none;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 28px;
  }
  
  .hero {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(4, 17, 33, 0.96) 0%, rgba(4, 17, 33, 0.82) 45%, rgba(4, 17, 33, 0.28) 100%),
      url("https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=2000&q=85")
      center / cover no-repeat;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, transparent 55%, rgba(8, 105, 232, 0.12)),
      linear-gradient(0deg, rgba(7, 24, 44, 0.55), transparent 45%);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
  }
  
  .eyebrow {
    margin: 0 0 22px;
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
  }
  
  .eyebrow.dark {
    color: var(--blue);
  }
  
  .hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--white);
    font-size: clamp(64px, 8vw, 112px);
    line-height: 0.9;
    letter-spacing: -6px;
    text-transform: uppercase;
  }
  
  .hero h1 span {
    color: var(--blue-light);
  }
  
  .hero-text {
    max-width: 620px;
    margin: 34px 0;
    color: rgba(255, 255, 255, 0.77);
    font-size: 20px;
    line-height: 1.7;
  }
  
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 27px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
  }
  
  .button-primary {
    color: var(--white);
    background: var(--blue);
  }
  
  .button-primary:hover {
    background: var(--blue-light);
  }
  
  .button-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .hero-points {
    max-width: 1000px;
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .hero-points div {
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .hero-points div:last-child {
    border-right: 0;
  }
  
  .hero-points strong,
  .hero-points span {
    display: block;
  }
  
  .hero-points strong {
    color: var(--white);
    margin-bottom: 8px;
  }
  
  .hero-points span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
  }
  
  .section {
    padding: 110px 0;
  }
  
  .section h2,
  .contact h2 {
    margin: 0 0 30px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
  }
  
  .split p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
  }
  
  .section-dark {
    color: var(--white);
    background: var(--navy);
  }
  
  .card-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .card {
    min-height: 270px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.11);
  }
  
  .card:hover {
    background: var(--blue);
  }
  
  .card-number {
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 800;
  }
  
  .card:hover .card-number {
    color: var(--white);
  }
  
  .card h3 {
    margin: 75px 0 15px;
    font-size: 25px;
  }
  
  .card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
  }
  
  .product-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .product-card {
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
  }
  
  .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 20, 38, 0.98), rgba(5, 20, 38, 0.05) 75%);
  }
  
  .product-workshop {
    background-image: url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1000&q=85");
  }
  
  .product-construction {
    background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=85");
  }
  
  .product-lift {
    background-image: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1000&q=85");
  }
  
  .product-content {
    position: relative;
    z-index: 2;
    padding: 35px;
    color: var(--white);
  }
  
  .product-content span {
    color: var(--blue-light);
    font-weight: 800;
  }
  
  .product-content h3 {
    margin: 12px 0;
    font-size: 31px;
  }
  
  .product-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    transition: 0.25s ease;
  }
  
  .service-section {
    background: var(--grey);
  }
  
  .service-list {
    border-top: 1px solid var(--border);
  }
  
  .service-list div {
    display: flex;
    gap: 35px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
    font-size: 21px;
    font-weight: 800;
  }
  
  .service-list strong {
    color: var(--blue);
  }
  
  .contact {
    padding: 110px 0;
    color: var(--white);
    background:
      linear-gradient(120deg, rgba(7, 24, 44, 0.98), rgba(7, 24, 44, 0.84)),
      url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=2000&q=85")
      center / cover;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
  }
  
  .contact p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.7;
  }
  
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  
  .contact-form label {
    display: grid;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 700;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    outline: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--blue-light);
  }
  
  .full-width {
    grid-column: 1 / -1;
  }
  
  .form-message {
    margin: 0;
    font-size: 14px;
  }
  
  .footer {
    padding: 65px 0;
    color: rgba(255, 255, 255, 0.7);
    background: #04111f;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }
  
  .footer-grid div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  
  .footer-grid strong {
    color: var(--white);
  }
  
  .footer-logo {
    margin-bottom: 25px;
  }
  
  @media (max-width: 900px) {
    .menu-button {
      display: block;
    }
  
    .navigation {
      display: none;
      position: absolute;
      top: 78px;
      left: 0;
      right: 0;
      padding: 25px 20px;
      flex-direction: column;
      align-items: flex-start;
      background: var(--navy);
    }
  
    .navigation.open {
      display: flex;
    }
  
    .hero {
      min-height: 850px;
    }
  
    .hero h1 {
      letter-spacing: -4px;
    }
  
    .hero-points {
      grid-template-columns: 1fr 1fr;
    }
  
    .hero-points div:nth-child(2) {
      border-right: 0;
    }
  
    .split,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 45px;
    }
  
    .card-grid,
    .product-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 620px) {
    .container {
      width: min(100% - 28px, 1180px);
    }
  
    .hero {
      min-height: 960px;
    }
  
    .hero h1 {
      font-size: 57px;
      letter-spacing: -3px;
    }
  
    .hero-text {
      font-size: 17px;
    }
  
    .hero-points,
    .card-grid,
    .product-grid,
    .contact-form,
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-points div {
      border-right: 0;
    }
  
    .section {
      padding: 75px 0;
    }
  
    .section h2,
    .contact h2 {
      letter-spacing: -2px;
    }
  }
  /* ========================================
   WERKSTATTTECHNIK-SEITE
======================================== */

.subpage-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.hero-workshop {
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 33, 0.97) 0%,
      rgba(4, 17, 33, 0.84) 50%,
      rgba(4, 17, 33, 0.28) 100%
    ),
    url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=2000&q=85")
    center / cover no-repeat;
}

.subpage-hero-content {
  padding-top: 125px;
  position: relative;
  z-index: 2;
}

.subpage-hero h1 {
  max-width: 850px;
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.subpage-hero h1 span {
  color: var(--blue-light);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  line-height: 1.7;
}

.workshop-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.workshop-card {
  min-height: 320px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.workshop-card:hover {
  transform: translateY(-6px);
  background: var(--blue);
}

.workshop-card-number {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
}

.workshop-card:hover .workshop-card-number {
  color: var(--white);
}

.workshop-card h3 {
  margin: 70px 0 15px;
  font-size: 27px;
}

.workshop-card p {
  min-height: 75px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.workshop-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue-light);
  font-weight: 800;
}

.workshop-card:hover a {
  color: var(--white);
}

.workshop-highlight {
  background: var(--grey);
}

.workshop-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.workshop-highlight p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.workshop-benefits {
  border-top: 1px solid var(--border);
}

.workshop-benefits div {
  display: flex;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
  font-weight: 800;
}

.workshop-benefits strong {
  color: var(--blue);
}

.workshop-cta {
  padding: 85px 0;
  color: var(--white);
  background: var(--blue);
}

.workshop-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.workshop-cta h2 {
  max-width: 750px;
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
}

.workshop-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .workshop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-highlight-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .workshop-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .subpage-hero {
    min-height: 800px;
  }

  .subpage-hero h1 {
    font-size: 57px;
    letter-spacing: -3px;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-card {
    min-height: 280px;
  }
}
/* ========================================
   PRODUKTKARTEN WERKSTATTTECHNIK
======================================== */

.workshop-product-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workshop-product-card {
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.workshop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.workshop-product-image {
  height: 250px;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}

.workshop-product-card:hover .workshop-product-image {
  transform: scale(1.04);
}

.workshop-product-content {
  min-height: 255px;
  padding: 28px;
}

.workshop-product-content span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.workshop-product-content h3 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: 27px;
}

.workshop-product-content p {
  min-height: 72px;
  color: var(--muted);
  line-height: 1.65;
}

.workshop-product-content a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.workshop-product-content a:hover {
  color: var(--blue-light);
}

/* Produktbilder */

.image-two-post {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1000&q=85");
}

.image-four-post {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1000&q=85");
}

.image-scissor {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1000&q=85");
}

.image-tyre-machine {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1563720223185-11003d516935?auto=format&fit=crop&w=1000&q=85");
}

.image-wheel-balancer {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1551830820-330a71b99659?auto=format&fit=crop&w=1000&q=85");
}

.image-alignment {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1000&q=85");
}

.image-compressor {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1000&q=85");
}

.image-tools {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1530124566582-a618bc2615dc?auto=format&fit=crop&w=1000&q=85");
}

.image-diagnostics {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=1000&q=85");
}

@media (max-width: 900px) {
  .workshop-product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .workshop-product-grid {
    grid-template-columns: 1fr;
  }

  .workshop-product-image {
    height: 230px;
  }
}
/* ========================================
   BAUMASCHINEN-SEITE
======================================== */

.machine-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 33, 0.97) 0%,
      rgba(4, 17, 33, 0.82) 48%,
      rgba(4, 17, 33, 0.22) 100%
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=85")
    center / cover no-repeat;
}

.machine-hero-content {
  padding-top: 125px;
}

.machine-hero h1 {
  max-width: 900px;
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.machine-hero h1 span {
  color: var(--blue-light);
}

.machine-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.7;
}

.machine-product-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.machine-product-card {
  overflow: hidden;
  color: var(--text);
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.machine-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.machine-image {
  height: 250px;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}

.machine-product-card:hover .machine-image {
  transform: scale(1.04);
}

.machine-content {
  min-height: 265px;
  padding: 28px;
}

.machine-content span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.machine-content h3 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: 27px;
}

.machine-content p {
  min-height: 90px;
  color: var(--muted);
  line-height: 1.65;
}

.machine-content a {
  color: var(--blue);
  font-weight: 800;
}

.machine-mini-excavator,
.machine-excavator,
.machine-mobile-excavator {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=85");
}

.machine-loader {
  background-image: url("https://images.unsplash.com/photo-1580901369227-308f6f40bdeb?auto=format&fit=crop&w=1000&q=85");
}

.machine-telehandler {
  background-image: url("https://images.unsplash.com/photo-1621922688758-6c9c9e6d5138?auto=format&fit=crop&w=1000&q=85");
}

.machine-dumper {
  background-image: url("https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&w=1000&q=85");
}

.machine-roller,
.machine-compactor {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=85");
}

.machine-attachments {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1000&q=85");
}

.machine-service {
  background: var(--grey);
}

.machine-cta {
  padding: 85px 0;
  color: var(--white);
  background: var(--blue);
}

.machine-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.machine-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
}

.machine-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .machine-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .machine-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .machine-hero {
    min-height: 800px;
  }

  .machine-hero h1 {
    font-size: 57px;
    letter-spacing: -3px;
  }

  .machine-product-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   ARBEITSBÜHNEN-SEITE
======================================== */

.platform-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 33, 0.97) 0%,
      rgba(4, 17, 33, 0.82) 48%,
      rgba(4, 17, 33, 0.22) 100%
    ),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=85")
    center / cover no-repeat;
}

.platform-hero-content {
  padding-top: 125px;
}

.platform-hero h1 {
  max-width: 950px;
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.platform-hero h1 span {
  color: var(--blue-light);
}

.platform-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.7;
}

.platform-product-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-product-card {
  overflow: hidden;
  color: var(--text);
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.platform-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.platform-image {
  height: 250px;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}

.platform-product-card:hover .platform-image {
  transform: scale(1.04);
}

.platform-content {
  min-height: 265px;
  padding: 28px;
}

.platform-content span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.platform-content h3 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: 27px;
}

.platform-content p {
  min-height: 90px;
  color: var(--muted);
  line-height: 1.65;
}

.platform-content a {
  color: var(--blue);
  font-weight: 800;
}

.platform-scissor {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=85");
}

.platform-articulating {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1000&q=85");
}

.platform-telescopic {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=85");
}

.platform-mast {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&w=1000&q=85");
}

.platform-truck {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1000&q=85");
}

.platform-trailer {
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.08), rgba(7, 24, 44, 0.08)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1000&q=85");
}

.platform-service {
  background: var(--grey);
}

.platform-cta {
  padding: 85px 0;
  color: var(--white);
  background: var(--blue);
}

.platform-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.platform-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
}

.platform-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .platform-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .platform-hero {
    min-height: 800px;
  }

  .platform-hero h1 {
    font-size: 54px;
    letter-spacing: -3px;
  }

  .platform-product-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   RECHTLICHE SEITEN
======================================== */

.legal-page {
  min-height: 100vh;
  background: var(--grey);
}

.legal-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 145px 0 100px;
}

.legal-content h1 {
  margin: 30px 0 55px;
  color: var(--navy);
  font-size: clamp(52px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -4px;
}

.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--navy);
  font-size: 25px;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 800;
}
.privacy-notice {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.6;
}

.privacy-notice a {
  color: var(--blue-light);
  text-decoration: underline;
}
/* ========================================
   WHATSAPP-BUTTON
======================================== */

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 54px;
  padding: 0 20px;

  color: #ffffff;
  background: #25d366;
  border-radius: 999px;

  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-4px);
  background: #1fbd5a;
}

.whatsapp-icon {
  font-size: 24px;
  line-height: 1;
}

.whatsapp-text {
  font-size: 14px;
}

@media (max-width: 620px) {
  .whatsapp-button {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-text {
    display: none;
  }
}
/* ========================================
   PRODUKTE-DROPDOWN
======================================== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;

  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;

  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-button:hover {
  color: var(--white);
}

.nav-dropdown-button span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;

  min-width: 240px;
  padding: 10px;

  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 22px 50px rgba(4, 17, 33, 0.22);

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 16px;

  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: var(--blue);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-button span,
.nav-dropdown.open .nav-dropdown-button span {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-button {
    width: 100%;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-dropdown-menu {
    position: static;

    display: none;
    min-width: 0;
    margin-top: 8px;
    padding: 7px;

    background: rgba(255, 255, 255, 0.07);
    border: 0;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.82);
  }
}
.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer-grid p {
  max-width: 330px;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.footer a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
.contact-form select {
  width: 100%;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: none;
}

.contact-form select:focus {
  border-color: var(--blue-light);
}

.contact-form select option {
  color: var(--text);
  background: var(--white);
}
/* ========================================
   PRODUKTDETAIL: 2-SÄULEN-HEBEBÜHNEN
======================================== */

.detail-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.detail-two-post {
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 33, 0.97) 0%,
      rgba(4, 17, 33, 0.82) 48%,
      rgba(4, 17, 33, 0.24) 100%
    ),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=2000&q=85")
    center / cover no-repeat;
}

.detail-hero-content {
  padding-top: 125px;
}

.detail-hero h1 {
  max-width: 950px;
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.detail-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.7;
}

.detail-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.detail-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.25s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  background: var(--blue);
}

.detail-card span {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
}

.detail-card h3 {
  margin: 70px 0 15px;
  font-size: 28px;
}

.detail-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.detail-specs-section {
  background: var(--grey);
}

.spec-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.spec-item {
  min-height: 145px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spec-item:nth-child(even) {
  border-right: 0;
}

.spec-item strong,
.spec-item span {
  display: block;
}

.spec-item strong {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
}

.spec-item span {
  color: var(--muted);
  line-height: 1.65;
}

.detail-options {
  background: var(--white);
}

.detail-cta {
  padding: 85px 0;
  color: var(--white);
  background: var(--blue);
}

.detail-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.detail-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
}

.detail-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .detail-hero {
    min-height: 780px;
  }

  .detail-hero h1 {
    font-size: 52px;
    letter-spacing: -3px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    border-right: 0;
  }
}
.trust-section {
  padding: 110px 0;
  background: #f7f8fb;
}

.trust-section h2 {
  margin-bottom: 55px;
  text-align: center;
}

.trust-section .eyebrow {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.trust-card {
  padding: 38px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}

.trust-card:hover {
  transform: translateY(-8px);
}

.trust-icon {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 24px;
}

.trust-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   SCROLL-ANIMATIONEN
======================================== */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s ease var(--reveal-delay, 0ms);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation wird beim Scrollen kompakter */

.header {
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.nav {
  transition: min-height 0.25s ease;
}

.header-scrolled {
  background: rgba(4, 17, 31, 0.98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.header-scrolled .nav {
  min-height: 66px;
}

/* Bewegungen für Nutzer reduzieren, die dies eingestellt haben */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-card,
  .trust-card,
  .workshop-product-card,
  .machine-product-card,
  .platform-product-card {
    transition: none;
  }
}
/* ========================================
   MASCHINENKATALOG
======================================== */

.catalog-hero {
  padding: 175px 0 95px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 17, 33, 0.97), rgba(8, 105, 232, 0.55)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=85")
      center / cover;
}

.catalog-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.7;
}

.catalog-section {
  background: var(--grey);
}

.catalog-filter {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(7, 24, 44, 0.1);
}

.catalog-filter label {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.catalog-filter input,
.catalog-filter select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--text);
  background: var(--grey);
  border: 1px solid var(--border);
  outline: none;
}

.catalog-filter input:focus,
.catalog-filter select:focus {
  border-color: var(--blue);
}

.catalog-result {
  margin: 30px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.machine-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.catalog-machine-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 24, 44, 0.08);
}

.catalog-machine-image {
  height: 320px;
  overflow: hidden;
  background: var(--navy);
}

.catalog-machine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-machine-card:hover img {
  transform: scale(1.04);
}

.catalog-machine-content {
  padding: 30px;
}

.catalog-machine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-machine-meta span {
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(8, 105, 232, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.catalog-machine-content h2 {
  margin: 20px 0 13px;
  color: var(--navy);
  font-size: 30px;
}

.catalog-machine-content > p {
  min-height: 55px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-machine-data {
  margin: 25px 0;
  border-top: 1px solid var(--border);
}

.catalog-machine-data div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.catalog-machine-data dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.catalog-machine-data dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 65px;
  text-align: center;
  background: var(--white);
}

.catalog-empty h2 {
  color: var(--navy);
}

.catalog-empty p {
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .catalog-filter {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-filter label:first-child {
    grid-column: 1 / -1;
  }

  .machine-catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .catalog-hero h1 {
    letter-spacing: -3px;
  }

  .catalog-filter {
    grid-template-columns: 1fr;
  }

  .catalog-filter label:first-child {
    grid-column: auto;
  }

  .catalog-machine-image {
    height: 240px;
  }
}
/* ========================================
   MARKENBEREICH
======================================== */

.brands-section {
  padding: 105px 0;
  overflow: hidden;
  background: var(--white);
}

.brands-section h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
}

.brands-intro {
  max-width: 720px;
  margin: 28px 0 55px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.brands-slider {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--grey);
}

.brands-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: brands-scroll 32s linear infinite;
}

.brands-track span {
  min-width: 230px;
  padding: 31px 35px;
  color: var(--navy);
  border-right: 1px solid var(--border);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

.brands-slider:hover .brands-track {
  animation-play-state: paused;
}

.brands-note {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brands-note p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .brands-track span {
    min-width: 185px;
    padding: 26px 24px;
    font-size: 17px;
  }

  .brands-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
  }
}
/* ========================================
   BRANCHEN
======================================== */

.industries-section {
  padding: 110px 0;
  background: var(--grey);
}

.industries-section h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
}

.industries-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: transform 0.3s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(4, 17, 33, 0.98),
    rgba(4, 17, 33, 0.08) 76%
  );
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: var(--white);
}

.industry-content span {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
}

.industry-content h3 {
  margin: 14px 0;
  font-size: 29px;
}

.industry-content p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.industry-content a {
  display: inline-block;
  margin-top: 16px;
  color: var(--white);
  font-weight: 800;
}

.industry-workshop {
  background-image: url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1000&q=85");
}

.industry-construction {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=85");
}

.industry-industry {
  background-image: url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1000&q=85");
}

.industry-municipal {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1000&q=85");
}

.industry-agriculture {
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1000&q=85");
}

.industry-service {
  background-image: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1000&q=85");
}

/* ========================================
   ABLAUF
======================================== */

.process-section {
  padding: 110px 0;
  color: var(--white);
  background: var(--navy);
}

.process-section h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
}

.process-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 75px 0 14px;
  font-size: 25px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

/* ========================================
   ABSCHLUSS-CTA
======================================== */

.home-cta {
  padding: 95px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 105, 232, 0.96), rgba(7, 24, 44, 0.94)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=85")
      center / cover;
}

.home-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.home-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -4px;
}

.home-cta p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.home-cta-actions {
  min-width: 245px;
  display: grid;
  gap: 13px;
}

@media (max-width: 1000px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .industries-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
  }

  .home-cta-actions {
    width: 100%;
  }
}
/* ========================================
   NEU IM BESTAND
======================================== */

.latest-machines-section{
  padding:110px 0;
  background:#f7f8fb;
  }
  
  .latest-machines-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:55px;
  }
  
  .latest-machines-heading h2{
  margin:0;
  font-size:clamp(42px,5vw,72px);
  line-height:1;
  letter-spacing:-3px;
  color:var(--navy);
  }
  
  .latest-machines-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  }
  
  .latest-machine-card{
  background:#fff;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:.3s;
  }
  
  .latest-machine-card:hover{
  transform:translateY(-8px);
  }
  
  .latest-machine-image{
  height:240px;
  overflow:hidden;
  }
  
  .latest-machine-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s;
  }
  
  .latest-machine-card:hover img{
  transform:scale(1.05);
  }
  
  .latest-machine-content{
  padding:28px;
  }
  
  .latest-machine-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:15px;
  }
  
  .latest-machine-meta span{
  padding:6px 10px;
  background:rgba(8,105,232,.08);
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  }
  
  .latest-machine-content h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:26px;
  }
  
  .latest-machine-content p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:18px;
  }
  
  .latest-machine-content a{
  font-weight:800;
  color:var(--blue);
  text-decoration:none;
  }
  
  @media(max-width:1000px){
  
  .latest-machines-grid{
  
  grid-template-columns:repeat(2,1fr);
  
  }
  
  }
  
  @media(max-width:700px){
  
  .latest-machines-grid{
  
  grid-template-columns:1fr;
  
  }
  
  .latest-machines-heading{
  
  flex-direction:column;
  align-items:flex-start;
  
  }
  
  }
  /* ========================================
   DYNAMISCHE MASCHINENDETAILSEITE
======================================== */

.machine-detail-hero {
  padding: 150px 0 90px;
  color: var(--white);
  background: var(--navy);
}

.machine-detail-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 65px;
  align-items: center;
}

.machine-detail-image {
  height: 560px;
  overflow: hidden;
  background: #ffffff;
}

.machine-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 25px;
}

.machine-detail-tags span {
  padding: 8px 12px;
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.machine-detail-summary h1 {
  margin: 0 0 25px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.machine-detail-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.machine-detail-actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.machine-detail-data-section {
  background: var(--grey);
}

.machine-detail-data {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.machine-detail-data div {
  padding: 26px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.machine-detail-data div:nth-child(even) {
  border-right: 0;
}

.machine-detail-data span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.machine-detail-data strong {
  color: var(--navy);
}

.machine-gallery-section {
  background: var(--white);
}

.machine-gallery {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.machine-gallery-item {
  height: 180px;
  padding: 0;
  overflow: hidden;
  background: var(--grey);
  border: 3px solid transparent;
  cursor: pointer;
}

.machine-gallery-item.active {
  border-color: var(--blue);
}

.machine-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-detail-cta {
  padding: 85px 0;
  color: var(--white);
  background: var(--blue);
}

.machine-detail-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.machine-detail-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
}

.machine-detail-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.catalog-machine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.machine-detail-button {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.machine-detail-button:hover {
  color: var(--white);
  background: var(--blue);
}

.detail-loading,
.detail-error {
  min-height: 70vh;
  padding: 180px 0 100px;
  background: var(--grey);
}

.detail-error h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
}

.detail-error p {
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 950px) {
  .machine-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .machine-detail-image {
    height: 460px;
  }

  .machine-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .machine-detail-cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .machine-detail-image {
    height: 300px;
  }

  .machine-detail-data {
    grid-template-columns: 1fr;
  }

  .machine-detail-data div {
    grid-template-columns: 1fr;
    gap: 8px;
    border-right: 0;
  }

  .machine-gallery {
    grid-template-columns: 1fr;
  }

  .machine-gallery-item {
    height: 230px;
  }

  .catalog-machine-actions {
    display: grid;
  }
}
/* ========================================
   ECHTES HEMA-LOGO
======================================== */

.logo-image-link {
  display: inline-flex;
  align-items: center;
  letter-spacing: normal;
}

.header-logo-image {
  display: block;
  width: auto;
  height: 43px;
  object-fit: contain;
}

.footer-logo .header-logo-image {
  height: 52px;
}

@media (max-width: 620px) {
  .header-logo-image {
    height: 36px;
  }
}
/* ========================================
   AKTIONEN BEI „NEU IM BESTAND“
======================================== */

.latest-machine-content h3 a {
  color: var(--navy);
  transition: color 0.2s ease;
}

.latest-machine-content h3 a:hover {
  color: var(--blue);
}

.latest-machine-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.latest-machine-actions .button {
  min-height: 48px;
  padding: 0 14px;
  font-size: 13px;
}

.latest-detail-button {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.latest-detail-button:hover {
  color: var(--white);
  background: var(--blue);
}

.latest-machine-image {
  display: block;
}

@media (max-width: 420px) {
  .latest-machine-actions {
    grid-template-columns: 1fr;
  }
}
/* Text im blauen Angebotsbutton sichtbar halten */
.latest-machine-actions .button-primary,
.catalog-machine-actions .button-primary {
  color: #ffffff;
}

.latest-machine-actions .button-primary:hover,
.catalog-machine-actions .button-primary:hover {
  color: #ffffff;
}
/* ========================================
   PREMIUM-MASCHINENDETAILSEITE
======================================== */

.machine-quick-data {
  margin: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.machine-quick-data div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.machine-quick-data span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 800;
}

.machine-quick-data strong {
  color: var(--white);
}

.machine-detail-hero .machine-gallery {
  margin-top: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.machine-detail-hero .machine-gallery-item {
  height: 105px;
}

.similar-machines-section {
  background: var(--white);
}

.similar-machines-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.similar-machines-heading h2 {
  margin: 0;
}

.similar-machines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.similar-machine-card {
  overflow: hidden;
  background: var(--grey);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.similar-machine-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(7, 24, 44, 0.13);
}

.similar-machine-image {
  display: block;
  height: 250px;
  overflow: hidden;
  background: var(--navy);
}

.similar-machine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.similar-machine-card:hover img {
  transform: scale(1.05);
}

.similar-machine-content {
  padding: 27px;
}

.similar-machine-content h3 {
  margin: 18px 0 12px;
  font-size: 25px;
}

.similar-machine-content h3 a {
  color: var(--navy);
}

.similar-machine-content h3 a:hover {
  color: var(--blue);
}

.similar-machine-content p {
  color: var(--muted);
  line-height: 1.6;
}

.similar-machine-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--blue);
  font-weight: 800;
}

.sticky-machine-inquiry {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1900;

  max-width: calc(100% - 150px);
  padding: 16px 28px;

  color: var(--white);
  background: var(--blue);
  border-radius: 999px;

  font-size: 14px;
  font-weight: 900;
  text-align: center;

  box-shadow: 0 16px 45px rgba(7, 24, 44, 0.32);
  transform: translateX(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.sticky-machine-inquiry:hover {
  color: var(--white);
  background: var(--blue-light);
  transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 950px) {
  .similar-machines-grid {
    grid-template-columns: 1fr 1fr;
  }

  .similar-machines-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .machine-quick-data div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .machine-detail-hero .machine-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .similar-machines-grid {
    grid-template-columns: 1fr;
  }

  .sticky-machine-inquiry {
    left: 14px;
    right: 84px;
    bottom: 17px;

    max-width: none;
    padding: 14px 16px;

    font-size: 12px;
    transform: none;
  }

  .sticky-machine-inquiry:hover {
    transform: translateY(-3px);
  }
}
/* Ausgewählte Maschine im Kontaktformular */

.product-request-field {
  display: none;
}

.product-request-field.is-filled {
  display: grid;
}

.product-request-field input[readonly] {
  color: var(--white);
  background: rgba(36, 145, 255, 0.18);
  border-color: var(--blue-light);
  font-weight: 800;
}
/* ========================================
   PREMIUM-DARSTELLUNG DER PRODUKTBILDER
======================================== */

.catalog-machine-image,
.latest-machine-image,
.machine-detail-image,
.similar-machine-image {
  position: relative;
  background:
    radial-gradient(circle at center, #ffffff 0%, #f4f6f9 100%);
}

/* Maschinen vollständig anzeigen statt abschneiden */
.catalog-machine-image img,
.latest-machine-image img,
.machine-detail-image img,
.similar-machine-image img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  background: transparent;
}

/* Maschinenbestand */
.catalog-machine-image {
  height: 420px;
}

/* Startseite: Neu im Bestand */
.latest-machine-image {
  height: 340px;
}

/* Detailseite */
.machine-detail-image {
  height: 560px;
}

/* Ähnliche Maschinen */
.similar-machine-image {
  height: 250px;
}

/* Dezente Trennlinie unter dem Bild */
.catalog-machine-image,
.latest-machine-image,
.similar-machine-image {
  border-bottom: 1px solid var(--border);
}

/* Zoom etwas zurückhaltender */
.catalog-machine-card:hover img,
.latest-machine-card:hover img,
.similar-machine-card:hover img {
  transform: scale(1.025);
}

@media (max-width: 650px) {
  .catalog-machine-image,
  .latest-machine-image {
    height: 260px;
  }

  .machine-detail-image {
    height: 360px;
  }

  .catalog-machine-image img,
  .latest-machine-image img,
  .machine-detail-image img,
  .similar-machine-image img {
    padding: 14px;
  }
}
/* Maschinenbestand: Premium-Hero und vier Filter */

.catalog-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 165px 0 90px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 33, 0.97),
      rgba(4, 17, 33, 0.7),
      rgba(4, 17, 33, 0.25)
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=85")
      center / cover no-repeat;
}

.catalog-hero-content {
  position: relative;
  z-index: 1;
}

.catalog-hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(60px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.7;
}

.catalog-filter {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

@media (max-width: 1000px) {
  .catalog-filter {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-filter label:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .catalog-hero {
    min-height: 500px;
    padding-top: 140px;
  }

  .catalog-hero h1 {
    letter-spacing: -3px;
  }

  .catalog-filter {
    grid-template-columns: 1fr;
  }

  .catalog-filter label:first-child {
    grid-column: auto;
  }
}
/* Herstellerlogo */



