/* ===========================
   MAREL BAU – LEISTUNGEN (EINZELGEWERKE)
   =========================== */

/* ===== HERO VARIANTE FÜR GEWERKE ===== */

.hero.hero--light {
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5; /* fallback falls kein Bild */
}

.hero-overlay.hero-overlay--light {
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #111;
  border-radius: 1rem;
  box-shadow: 0 24px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.hero-overlay.hero-overlay--light .hero-eyebrow {
  color: #d91e18;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.hero-overlay.hero-overlay--light .hero-headline {
  color: #0f172a;
  font-size: clamp(2rem, 1vw + 1.5rem, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}

.hero-overlay.hero-overlay--light .hero-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-overlay.hero-overlay--light .btn-primary {
  background: #d91e18;
  border: 2px solid #d91e18;
  color: #fff;
  border-radius: .6rem;
}
.hero-overlay.hero-overlay--light .btn-outline {
  background: #fff;
  border: 2px solid #0f172a;
  color: #0f172a;
  border-radius: .6rem;
}

/* ===== HIGHLIGHT-BOX (Zahlen für Vertrauen) ===== */
.highlight-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin: 2rem 0;
  text-align: center;
}
.highlight-box div strong {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #d91e18;
  font-weight: 600;
}
.highlight-box div {
  font-size: .9rem;
  color: #444;
  line-height: 1.4;
}

/* ===== Sektionen spacing ===== */
.section-main,
.section-preise,
.section-referenzen,
.section-subleistungen,
.section-faq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Sektionstitel neutralisieren */
.section-head h2 {
  color: #0f172a;
  font-weight: 600;
}
.section-head p {
  color: #4a4a4a;
}

/* ===== FAQ ===== */
.faq-list {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  padding: 1rem 1.5rem;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-weight: 600;
  color: #0f172a;
}
.faq-question::after {
  content: '+';
  font-weight: 600;
  color: #d91e18;
}
.faq-item.open .faq-question::after {
  content: '–';
}
.faq-answer {
  padding: 0 0 1rem 0;
  font-size: .95rem;
  line-height: 1.5;
  color: #444;
}

/* === Info + Kontakt Sidebar === */
.leistung-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width:900px){
  .leistung-flex {
    grid-template-columns: minmax(0,1fr) 320px;
    align-items: start;
  }
}

.leistung-headline {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 .5rem;
}
.leistung-intro {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.leistung-cta-box {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 1.5rem 1.5rem 1.25rem;
  font-size: .9rem;
  line-height: 1.5;
  color: #333;
}
.leistung-cta-head {
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.leistung-cta-text {
  font-size: .9rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 1rem;
}
.leistung-cta-list {
  font-size: .85rem;
  line-height: 1.4;
  color: #444;
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}
.leistung-cta-list li {
  margin-bottom: .4rem;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: .6rem;
  margin-bottom: 1rem;
}
.leistung-cta-hotline {
  background: #f9f9f9;
  border-radius: .6rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}
.leistung-cta-hotline .hotline-label {
  font-size: .75rem;
  color: #555;
  line-height: 1.4;
}
.leistung-cta-hotline .hotline-number {
  font-size: 1rem;
  font-weight: 600;
  color: #d91e18;
  text-decoration: none;
  line-height: 1.2;
  display: block;
  margin-top: .25rem;
}
.leistung-cta-hotline .hotline-hint {
  font-size: .7rem;
  color: #999;
  line-height: 1.4;
  margin-top: .25rem;
}

/* === Prozess-Schritte (Ablauf) === */
.section-process {
  background: #fafafa;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 0;
}
.process-grid {
  display: grid;
  gap: 1rem;
}
@media(min-width:700px){
  .process-grid {
    grid-template-columns: repeat(4,1fr);
  }
}
.process-step {
  background: #fff;
  border-radius: .8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: #444;
}
.process-step-number {
  background: #d91e18;
  color: #fff;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
  padding: .4rem .6rem;
  margin-bottom: .75rem;
}
.process-step b {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: #0f172a;
  margin-bottom: .4rem;
}
.process-step p {
  margin: 0;
  font-size: .85rem;
  color: #444;
}

/* =========================
   HERO / LEISTUNG TOPBLOCK
   ========================= */

.leistung-hero {
  background: #fafafa;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 3rem 0 2rem;
}
.leistung-hero-inner {
  display: grid;
  gap: 2rem;
}
@media(min-width:900px){
  .leistung-hero-inner {
    grid-template-columns: minmax(0,1fr) 480px;
    align-items: center;
  }
}
.leistung-eyebrow {
  color: #d91e18;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.leistung-title {
  color: #0f172a;
  font-size: clamp(1.8rem, 1vw + 1.4rem, 2.2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 .75rem;
}
.leistung-lead {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 40ch;
  margin: 0 0 1.5rem;
}
.leistung-hero-media {
  display: flex;
  justify-content: center;
}
.leistung-hero-imagewrap {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}
.leistung-hero-imagewrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* =========================
   UNTERLEISTUNGEN / KACHELN
   ========================= */
.section-subleistungen {
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.leistungen-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:700px){
  .leistungen-grid {
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  }
}
.leistung-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.leistung-card-thumb {
  width: 100%;
  height: 160px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
}
.leistung-card-body {
  padding: 1rem 1rem 3rem;
}
.leistung-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 .5rem;
}
.leistung-card p {
  font-size: .9rem;
  line-height: 1.4;
  color: #555;
  margin: 0;
}
.leistung-card-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistung-card:hover .leistung-card-arrow {
  background: #d91e18;
}

/* ===== Sub-Leistungen ===== */
.subleistung-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:600px){
  .subleistung-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media(min-width:1024px){
  .subleistung-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}
.sub-card {
  background: #fff;
  border-radius: .9rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .18s ease;
}
.sub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}
.sub-card-media {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ddd;
  overflow: hidden;
}
.sub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-card-body {
  padding: 1rem 1.25rem 1.25rem;
  font-size: .9rem;
  color: #444;
}
.sub-card-headline {
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
}
.sub-card-text {
  font-size: .9rem;
  color: #555;
}
.sub-card-cta {
  font-weight: 600;
  font-size: .85rem;
  color: #d91e18;
}
