/* ================== Banner hero ============ */
.projekt-hero {
  height: 500px;
  position: relative;
}
.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-gradient {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(16,36,60,0.09) 30%, rgba(16,36,60,0.95) 95%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 44px 34px 28px 44px;
}

.hero-title {
  font-size: 2.3rem;
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-subline {
  font-size: 1.13rem;
  margin-bottom: 16px;
  opacity: 0.92;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  font-size: 1rem;
  opacity: 0.85;
}
.hero-facts li span { color: #0093d2; font-weight: 600; }


/* ================== Unternehmens-Summary ============ */
.unternehmen-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5faff;
  border-radius: 0px;
  margin: 32px auto;
  max-width: 750px;
  box-shadow: 0 1px 12px 0 rgba(0,0,0,0.1);
  padding: 24px 28px;
}
.unternehmen-summary-content {
  display: flex;
  gap: 15px;
  align-items: center;
}
.unternehmen-summary-icon svg { display: block; }

/* ================== Projekt-Auftrag Creative Card ============ */
.projekt-auftrag {
  position: relative;
  margin: 60px auto 0px;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 15px 32px;
}

.projekt-auftrag-bar {
  position: absolute;
  left: 0;
  top: 54px;
  width: 100vw;
  height: 95px;
  background: linear-gradient(90deg, #0093d2 20%, #013f6f 80%);
  z-index: 1;
  opacity: 0.22;
  filter: blur(3px);
}

.projekt-auftrag-card {
  position: relative;
  z-index: 2;
  background: #fff;
  max-width: 713px;
  margin: 0 auto;
  border-radius: 20px 0px 0px 0px;
  box-shadow: 0 8px 32px 0 rgba(1,63,111,0.11), 0 1.5px 16px 0 rgba(0,0,0,0.06);
  padding: 40px;
  text-align: left;
  transform: translateY(-36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 7px solid #0093d2;
}

.projekt-auftrag-card h2 {
  font-size: 1.5rem;
  
  
  line-height: 1.1;
}

.industry-label {
  font-size: 0.91rem;
  color: #fff;
  background: linear-gradient(90deg, #0093d2 60%, #013f6f 100%);
  padding: 4px 18px 5px 18px;
  border-radius: 8px 18px 8px 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 1;
  margin-bottom: 7px;
  display: inline-block;
  box-shadow: 0 2px 12px 0 rgba(0,147,210,0.09);
}

.projekt-auftrag-content p {
  font-size: 1.11rem;
  color: #013f6f;
  margin-bottom: 15px;
  line-height: 1.7;
}

.projekt-auftrag-content ul {
  margin: 0 0 0 10px;
  padding: 0 0 0 17px;
  color: #224154;
  font-size: 1rem;
  line-height: 1.6;
  list-style: disc;
  opacity: 0.97;
}

.highlight {
  color: #013f6f;
  background: linear-gradient(92deg, #2cfecf44 0%, #0093d233 100%);
  border-radius: 12px 28px 12px 28px / 18px 9px 16px 17px;
  padding: 0 7px;
  font-weight: 700;
  box-decoration-break: clone;
}

.projekt-auftrag-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.09rem;
  color: #0093d2;
  font-weight: 600;
  opacity: 0.95;
}
.projekt-auftrag-footer svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px #0093d214);
}

/* ========== Responsive Anpassungen =========== */
@media (max-width: 600px) {
  .projekt-auftrag-card {
    padding: 22px 6vw 18px 6vw;
  }
  .projekt-auftrag-bar {
    top: 38px;
    height: 64px;
  }
}


/* ================== Erbrachte Leistungen ============ */
.projekt-leistungen {
  margin: 40px auto;
  max-width: 728px;
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(0,0,0,0.1);
  padding: 34px 36px 24px 36px;
}
.leistungen-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.leistung-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.leistung-bubble {
  background: linear-gradient(135deg, #0093d2 70%, #013f6f 100%);
  color: #fff;
  min-width: 36px;
  height: 36px;
  border-radius: 0%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.13rem;
  margin-top: 3px;
  box-shadow: 0 1px 12px 0 rgba(0,0,0,0.1);
}


/* ================== Impressionen ============ */
.projekt-gallery {
  margin: 40px 0px 40px;
  padding: 15px;
}
.projekt-gallery h2 {
  max-width: 740px;
  margin: auto;
}
.gallery-grid-multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 24px;
}
.gallery-grid-multi img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 1px 12px 0 rgba(0,0,0,0.1);
  transition: transform 0.2s;
}


/* ================== Quote ============ */
.projekt-zitat-cta {
  max-width: 1200px;
  margin: 0 auto 42px auto;
  padding: 36px 0 18px 0;
  text-align: center;
  background: linear-gradient(90deg,#e6f6fd 40%,#f7fcff 100%);
  border-radius: 0px;
}
.zitat-spot {
  font-size: 1.17rem;
  color: #015e8c;
  margin-bottom: 18px;
  padding: 0 18px;
}
.zitat-spot q {
  font-style: italic;
  quotes: "“" "”";
}
.zitat-spot span {
  display: block;
  font-size: 1rem;
  color: #0093d2;
  margin-top: 8px;
}
.projekt-cta-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.cta-primary,
.cta-secondary {
  padding: 13px 38px;
  border-radius: 0px;
  font-size: 1.11rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.16s;
  letter-spacing: 0.04em;
}
.cta-primary {
  background: linear-gradient(90deg, #0093d2 50%, #013f6f 100%);
  color: #fff;
  box-shadow: 0 1px 12px 0 rgba(0,0,0,0.1);
}
.cta-primary:hover { background: #0093d2; }
.cta-secondary {
  background: none;
  color: #0093d2;
  border: 2px solid #0093d2;
}
.cta-secondary:hover { background: #0093d2; color: #fff; }

@media (max-width: 900px) {
  .hero-content { padding: 22px 14px 18px 22px;}
  .projekt-summary,
  
  .projekt-gallery,
  .projekt-zitat-cta { max-width: 100%; padding-left: 15px; padding-right: 15px }
  .gallery-grid-multi { grid-template-columns: repeat(2, 1fr);}
  .projekt-leistungen { margin: 40px 15px; padding:20px}
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.25rem;}
  .hero-subline { font-size: 0.97rem;}
  .leistung-bubble { width: 26px; height: 26px; font-size: 1rem;}
  .gallery-grid-multi { gap: 10px; }

  .projekt-auftrag,
  .projekt-summary,
  .projekt-gallery,
  .projekt-zitat-cta
  .projekt-gallery { padding-left: 10px; padding-right: 10px}
  .projekt-leistungen {margin: 40px 10px}
}
