/* PROFINI LANDINGPAGE SPECIFIC 
   Diese Datei setzt auf der global.css auf.
*/

/* --- HERO SEKTION --- */
.hero-section {
  position: relative;
  padding: 80px 0;
  background: url("../img/neu.jpg") no-repeat center center;
  background-size: cover;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-glass-card {
  background: var(--glass-white);
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  max-width: 680px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-glass-card h1 {
  font-weight: 850;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-glass-card p.lead {
  font-size: 1.25rem;
  color: #444 !important;
  margin-bottom: 2.5rem;
}

/* --- FEATURES SEKTION --- */
.features-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.feature-card {
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 3rem;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--brand-accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.icon-square {
  font-size: 3rem;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* --- KUNDEN SEKTION (DUNKEL) --- */
.bg-dark-section {
  background-color: var(--main-dark) !important;
  border-radius: 50px;
  margin: 40px 20px;
  padding: 100px 60px;
  color: #fff;
}

.progress {
  height: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.progress-bar {
  background-color: var(--brand-accent) !important;
}

/* --- NAVIGATION & FOOTER SPEZIFISCH --- */
.navbar {
  background: #ffffff !important;
  border-bottom: 1px solid var(--border-soft);
  padding: 0.8rem 0;
}

footer {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid var(--border-soft);
}

/* --- MOBIL-ANPASSUNG --- */
@media (max-width: 768px) {
  .hero-glass-card {
    padding: 2rem;
    border-radius: 20px;
  }

  .bg-dark-section {
    border-radius: 0;
    margin: 20px 0;
    padding: 60px 20px;
  }
}
