/*
 * ICT Berlin Hero — neues Design (dunkel, Berlin-Skyline, USP-Zeile).
 * Werte 1:1 aus dem Claude-Design-Export (Desktop-Frame 1280px,
 * Mobil-Frame 390px); iOS-Mockup-Offsets entfernt.
 * Der transparente Sticky-Header des Themes liegt ÜBER dem Hero,
 * daher startet der Content mit entsprechendem Abstand von oben.
 */

.section-ict-hero {
  position: relative;
  min-height: 640px;
  background: #23282d;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

/* Berlin-Skyline (Brandenburger Tor mittig), dekorativ */
.section-ict-hero .ict-hero-bg {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 1280px;
  max-width: none;
  opacity: 0.18;
  pointer-events: none;
}

/* Bewusste Abweichung vom 1280px-Design-Frame: auf sehr breiten
   Screens skaliert die Skyline mit, gedeckelt bei 1600px */
@media (min-width: 1281px) {
  .section-ict-hero .ict-hero-bg {
    width: 100%;
    max-width: 1600px;
  }
}

/* Content-Block: Abstand oben = transparenter Theme-Header (~85px) + 76px Design */
.section-ict-hero .ict-hero-content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 161px 26px 24px;
}

.section-ict-hero .ict-hero-kicker {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  color: #e86240;
  margin-bottom: 18px;
}

.section-ict-hero .ict-hero-title {
  margin: 0 0 22px;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: clamp(30px, 20px + 1.9vw, 44px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25;
  color: #ffffff;
}

.section-ict-hero .ict-hero-subline {
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.75;
  color: #f2f4f5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  max-width: 620px;
}

/* Buttons */
.section-ict-hero .ict-hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-ict-hero .ict-hero-btn {
  display: inline-block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.section-ict-hero .ict-hero-btn-primary {
  background: #e86240;
  text-transform: uppercase;
  padding: 15px 32px;
}

.section-ict-hero .ict-hero-btn-primary:hover,
.section-ict-hero .ict-hero-btn-primary:focus {
  background: #c94f31;
  color: #ffffff;
}

.section-ict-hero .ict-hero-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 13px 32px;
}

.section-ict-hero .ict-hero-btn-secondary:hover,
.section-ict-hero .ict-hero-btn-secondary:focus {
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.section-ict-hero .ict-hero-btn-secondary .fa-phone {
  /* neutralisiert eine globale .fa-phone-Regel aus einem
     Footer-Text-Widget (position:absolute fuer die Footer-Kontaktliste) */
  position: static;
  left: auto;
  padding-left: 0;
  margin-right: 10px;
}

/* USP-Zeile (Desktop: 3 Spalten, Icon oben) */
.section-ict-hero .ict-hero-usps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 60px;
  margin-top: 70px;
}

.section-ict-hero .ict-hero-usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.section-ict-hero .ict-hero-usp-icon i {
  font-size: 26px;
  color: #e86240;
}

.section-ict-hero .ict-hero-usp-text {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   Mobil / Hochformat (Design-Frame 390px, ohne iOS-Offsets)
   ========================================================= */
@media (max-width: 767px) {
  .section-ict-hero {
    min-height: 0;
  }

  .section-ict-hero .ict-hero-bg {
    width: 900px;
    bottom: 0;
  }

  .section-ict-hero .ict-hero-content {
    padding: 139px 26px 44px;
  }

  .section-ict-hero .ict-hero-kicker {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .section-ict-hero .ict-hero-title {
    margin: 0 0 16px;
    line-height: 1.3;
  }

  .section-ict-hero .ict-hero-subline {
    font-size: 16px;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 28px;
  }

  .section-ict-hero .ict-hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }

  .section-ict-hero .ict-hero-btn-primary {
    display: block;
    padding: 15px 24px;
    text-align: center;
  }

  .section-ict-hero .ict-hero-btn-secondary {
    display: block;
    border-color: rgba(255, 255, 255, 0.55);
    padding: 13px 24px;
    text-align: center;
  }

  /* USPs als gestapelte Karten mit Icon-Kreis links */
  .section-ict-hero .ict-hero-usps {
    flex-direction: column;
    gap: 10px;
    margin: 36px auto 0;
    max-width: 300px;
  }

  .section-ict-hero .ict-hero-usp {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    width: auto;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 3px solid #e86240;
    padding: 12px 16px;
  }

  .section-ict-hero .ict-hero-usp-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(232, 98, 64, 0.18);
    color: #e86240;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-ict-hero .ict-hero-usp-icon i {
    font-size: 16px;
  }

  .section-ict-hero .ict-hero-usp-text {
    color: #ffffff;
    text-align: left;
  }
}
