/* =========================================================
   EK4Y – ELEKTROMOBILITÄT / WALLBOX
   Version: 2025-11
========================================================= */

.leistungen-card {
    border: none;
    border-radius: .75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  
  .leistungen-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .leistungen-card .card-body {
    padding: 1.5rem;
    flex: 1;
  }
  
  .leistungen-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0a5c3e;
  }
  
  .leistungen-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .leistungen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  
  /* ==========================================
     VORTEILE
  ========================================== */
  .vorteil-box {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .vorteil-box h3 i {
    font-size: 2rem;
    color: #17d68f;
  }
  
  .vorteil-box .vorteil-title {
    font-weight: 600;
    color: #000;
    margin: 1rem 0 .5rem;
  }
  
  .vorteil-box p {
    color: #555;
    font-size: .95rem;
  }
  
  .vorteil-box:hover {
    transform: translateY(-6px);
    border-color: #17d68f;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  }
  
  .vorteil-box:hover i {
    color: #13b97c;
  }
  
  /* ==========================================
     SECTIONS
  ========================================== */
  #emobil-zukunft,
  #smarte-emobil-technik {
    padding: 4rem 0;
    color: #333;
    cursor: pointer;
  }
  
  #emobil-zukunft h2,
  #smarte-emobil-technik h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0a5c3e;
    margin-bottom: 1.5rem;
  }
  
  #emobil-zukunft p,
  #smarte-emobil-technik p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
  }
  
  /* ==========================================
     SMARTE TECHNIK
  ========================================== */
  #smarte-emobil-technik .row {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  #smarte-emobil-technik .icon-box {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 1rem;
    background: #fff;
    transition: all .3s ease;
    max-width: 260px;
    margin: 0 auto;
  }
  
  #smarte-emobil-technik .icon-box i {
    color: #17d68f;
    font-size: 2.3rem;
  }
  
  #smarte-emobil-technik .icon-box:hover {
    transform: translateY(-6px);
    border-color: #17d68f;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  #smarte-emobil-technik .icon-box:hover i {
    color: #13b97c;
  }
  
  #smarte-emobil-technik h5 {
    font-weight: 600;
    margin-top: 1rem;
  }
  
  /* ==========================================
     RESPONSIVE
  ========================================== */
  @media (max-width: 991.98px) {
    #emobil-zukunft,
    #smarte-emobil-technik {
      text-align: center;
    }
  
    #emobil-zukunft img {
      margin-top: 2rem;
    }
  }
  