.hero-section {
    background-image: url("https://delfs.dataexcellence.com.pl:50226/file/data/eb60f133-e24a-41a9-ae9d-5979ec7ab370/svg/hero-bg.svg");
}

.navbar-area.sticky {
    background: #5864ff;
}

.sticky .navbar .navbar-nav .nav-item a {
    color: #fff;
}

.footer {
  background-image: url("https://delfs.dataexcellence.com.pl:50226/file/data/7976ce08-18a4-4c98-a679-fac21ce48d93/svg/footer-bg.svg");
}

.footer-logo {
  width: 140px;
}

  /* Podstawowe style dla wszystkich kart */
  .single-pricing {
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee !important;
    border-radius: 15px;
    background: #fff;
    position: relative;
    z-index: 1;
  }

  /* Efekt hover dla wszystkich kart ORAZ stan początkowy dla Advanced */
  .single-pricing:hover, 
  .single-pricing.active-plan {
    transform: translateY(-10px);
    border: 2px solid #1A237E !important;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.15) !important;
    z-index: 2;
  }

  /* Zmiana przycisku w aktywnym/najechanym planie */
  .single-pricing:hover .main-btn,
  .single-pricing.active-plan .main-btn {
    background-color: #1A237E !important;
    color: #fff !important;
    border-color: #1A237E !important;
  }

  /* Styl etykiety */
  .badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: #ccc;
    transition: background 0.3s;
  }

  .single-pricing:hover .badge-pop,
  .single-pricing.active-plan .badge-pop {
    background: #1A237E;
  }
  
 /* Kontener, który trzyma ramkę i zaokrąglenia */
.image-container {
    width: 100%;
    height: 450px; /* Ustaw konkretną wysokość, która Ci odpowiada */
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2; /* Aby obraz był nad kształtami dekoracyjnymi, jeśli trzeba */
}

/* ZMIANA TUTAJ: 'contain' zamiast 'cover' */
.image-container img {
    width: 100%;
    height: 100%;
    object-position: center;
}

/* Responsywność dla telefonów - zmniejszamy wysokość ramki, żeby nie była za wielka */
@media (max-width: 767px) {
    .image-container {
        height: 300px;
    }
}





.hero-section {
    background-image: url("https://delfs.dataexcellence.com.pl:50226/file/data/eb60f133-e24a-41a9-ae9d-5979ec7ab370/svg/hero-bg.svg");
}

.hero-section .hero-content h1 {
  font-size: 48px;
}









.pricing-section .pricing-nav-wrapper ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pricing-section .pricing-nav-wrapper ul li a {
  font-size: 18px;
  font-weight: 700;
  color: #5B657E;
  padding: 10px 30px;
  background: rgba(88, 100, 255, 0.1);
  margin: 5px;
  border-radius: 30px;
}

.pricing-section .pricing-nav-wrapper ul li a.active {
  color: #fff;
  background: #5864FF;
}

.pricing-section .single-pricing {
  border-radius: 40px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 59px rgba(191, 191, 191, 0.16);
  box-shadow: 0px 0px 59px rgba(191, 191, 191, 0.16);
  padding: 45px 30px;
  margin-bottom: 30px;
}



.pricing-section .pricing-nav-wrapper ul li a.active {
  color: #fff;
  background: #5864FF;
}

.pricing-section .single-pricing .pricing-header .price {
  font-size: 45px;
  margin-bottom: 30px;
  color: #5864FF;
}

  .single-pricing {
    padding: 45px 30px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee !important;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 1;
  }

  /* EFEKT PODŚWIETLENIA */
  .single-pricing:hover, .single-pricing.active-plan {
    transform: translateY(-10px);
    border: 2px solid #5864FF !important;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.15) !important;
    z-index: 2;
  }

  /* NAGŁÓWKI I CENY */
  .pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  }
  .pricing-header .price {
    font-size: 42px;
    font-weight: 700;
    color: #162447;
    margin-bottom: 30px;
  }
  .pricing-header .price span {
    font-size: 16px;
    font-weight: 400;
    color: #777;
  }

  /* LISTA CECH */
  .pricing-body {
    flex-grow: 1;
    margin-bottom: 30px;
  }
  .pricing-body ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  .pricing-body ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .pricing-body ul li i {
    color: #1A237E;
    margin-right: 10px;
    font-size: 18px;
  }
  .pricing-body ul li.not-included {
    color: #ccc;
  }
  .pricing-body ul li.not-included i {
    color: #ccc;
  }

  /* PRZYCISK */
  .pricing-footer .main-btn {
    width: 100%;
    display: block;
  }
  .single-pricing:hover .main-btn, .single-pricing.active-plan .main-btn {
    background-color: #5864FF !important;
    color: #fff !important;
    border-color: #5864FF !important;
  }

  /* ETYKIETA NA GÓRZE */
  .badge-pop {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ccc;
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    transition: 0.3s;
  }
  .single-pricing:hover .badge-pop, .single-pricing.active-plan .badge-pop {
    background: #5864FF;
  }



