/* ==========================================
   1. RESET & STYLE GLOBALNE
   ========================================== */
*::after,
*::before,
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "vwhead", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.c-container {
  max-width: 1580px;
  margin: 0 auto;
}

@media (min-width: 2000px) {
  .c-container {
    max-width: 1920px;
  }
}

@media (max-width: 1600px) {
  .c-container {
    max-width: 90%;
  }
}

/* ==========================================
   2. HEADER & BANNER
   ========================================== */
.c-baner {
  height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.c-baner-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.c-line-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 40px;
  padding: 0.5rem 0;
  z-index: 9999;
}

.c-logo-line {
  height: 2px;
  background-color: #ffffff;
  width: 80%;
  flex-grow: 1;
}

.flex-basis {
  flex-basis: 333.33%;
}

.c-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 14px;
}

.c-logo img {
  width: 64px;
  height: 64px;
  max-width: unset;
}

.logo-mobile {
  display: none;
}

.c-salon {
  position: absolute;
  top: 2vw;
  left: 6vw;
}

.c-salon span {
  font-size: 1.5vw;
  font-weight: 600;
  color: #ffffff;
}

.c-mobile-salon {
  display: none;
}

/* Header RWD */
@media (max-width: 1600px) {
  .c-line-wrapper {
    top: 10px;
  }

  .c-salon {
    top: 1vw;
  }
}

@media (max-width: 960px) {
  .c-line-wrapper {
    top: 0;
  }
}

@media (max-width: 768px) {
  .c-logo img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 525px) {
  .c-line-wrapper {
    position: relative;
  }

  .c-logo-line {
    display: none;
  }

  .c-logo img {
    width: 32px;
    height: 32px;
  }

  .c-salon {
    display: none;
  }

  .c-mobile-salon {
    display: block;
  }

  .logo-hide {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .c-baner-img {
    order: 1;
  }
}

/* ==========================================
   3. SEKCJA: FLEET PROMO
   ========================================== */
.fleet-promo {
  padding: 50px 20px;
  background-color: #ffffff;
  color: #000000;
}

.fleet-promo__container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fleet-promo__header {
  margin-bottom: 36px;
  max-width: 1200px;
}

.fleet-promo__title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: #000000;
  letter-spacing: -0.5px;
}

.fleet-promo__subtitle {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.35;
  margin: 0;
  color: #222222;
}

.fleet-promo__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.fleet-promo__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.fleet-promo__card {
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 10px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.fleet-promo__card-label {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 14px;
  font-weight: 400;
}

.fleet-promo__card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
}

.fleet-promo__badge {
  background-color: #001e50;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 4% 16px 28px;
  border-radius: 4px;
  white-space: nowrap;
}

.fleet-promo__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fleet-promo__button {
  display: inline-block;
  padding: 10px 32px;
  background-color: #001e50;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  text-align: center;
}

.fleet-promo__button:hover {
  background-color: #003380;
}

@media (min-width: 640px) {
  .fleet-promo__cards {
    flex-direction: row;
    max-width: 520px;
  }

  .fleet-promo__card {
    min-width: 200px;
  }
}

@media (min-width: 992px) {
  .fleet-promo {
    padding: 70px 0;
  }

  .fleet-promo__title {
    font-size: 2.8rem;
  }

  .fleet-promo__subtitle {
    font-size: 2.4rem;
  }

  .fleet-promo__content {
    flex-direction: row;
    justify-content: center;
  }

  .fleet-promo__badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .fleet-promo__badge {
    padding-right: 8%;
  }
}

/* ==========================================
   4. SEKCJA: WHY WORTH (Dlaczego warto?)
   ========================================== */
.why-worth {
  padding: 50px 20px;
  background-color: #ffffff;
  color: #000000;
}

.why-worth__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.why-worth__media {
  width: 100%;
}

.why-worth__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.why-worth__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-worth__title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #000000;
  margin: 0 0 28px 0;
  line-height: 1.2;
}

.why-worth__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-worth__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #1a1a1a;
  font-weight: 400;
}

.why-worth__list-item--bold {
  font-weight: 700;
}

.why-worth__plus {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  width: 16px;
  display: inline-block;
  text-align: center;
}

.why-worth__text {
  line-height: 1.4;
}

@media (min-width: 992px) {
  .why-worth {
    padding: 80px 20px;
  }

  .why-worth__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }

  .why-worth__media {
    flex: 1;
  }

  .why-worth__content {
    flex: 1;
    padding-left: 20px;
  }

  .why-worth__title {
    font-size: 2.4rem;
  }

  .why-worth__list-item {
    font-size: 1.15rem;
  }
}

/* ==========================================
   5. SEKCJA: PROMO MODELS (SWIPER)
   ========================================== */
.promo-models {
  padding: 60px 20px;
  background-color: #ffffff;
  overflow: hidden;
}

.promo-models__container {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-models__title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #000000;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

.promo-models__slider-wrap {
  position: relative;
  padding: 0 50px;
}

.promo-models__swiper {
  width: 100%;
  padding-bottom: 10px;
  overflow: hidden;
}

.promo-models__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.promo-models__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.promo-models__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-models__model-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
}

.promo-models__model-desc {
  font-size: 0.95rem;
  color: #555555;
  margin: 0 0 20px 0;
  line-height: 1.4;
  min-height: 2.8em;
}

.promo-models__button {
  display: inline-block;
  padding: 10px 24px;
  background-color: #001e50;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}

.promo-models__button:hover {
  background-color: #003380;
}

.promo-models__nav.swiper-button-prev,
.promo-models__nav.swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: #001e50;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  margin-top: -45px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.promo-models__nav.swiper-button-prev:hover,
.promo-models__nav.swiper-button-next:hover {
  background-color: #003380;
}

.promo-models__nav.swiper-button-prev::after,
.promo-models__nav.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.promo-models__nav--prev {
  left: 0;
}

.promo-models__nav--next {
  right: 0;
}

@media (max-width: 767px) {
  .promo-models__slider-wrap {
    padding: 0;
  }

  .promo-models__nav.swiper-button-prev,
  .promo-models__nav.swiper-button-next {
    display: none;
  }

  .promo-models__title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}

/* ==========================================
   6. SEKCJA: SERVICE PACKAGE
   ========================================== */
.service-package {
  padding: 50px 20px;
  background-color: #ffffff;
  overflow: hidden;
}

.service-package__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-package__card {
  background-color: #00386b;
  background: linear-gradient(180deg, #00305d 0%, #00386b 100%);
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.service-package__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.service-package__price {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 32px 0;
  color: rgba(255, 255, 255, 0.9);
}

.service-package__button {
  display: inline-block;
  padding: 10px 28px;
  background-color: #ffffff;
  color: #001e50;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-package__button:hover {
  background-color: #e6eef7;
}

.service-package__media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.service-package__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

@media (min-width: 992px) {
  .service-package {
    padding: 80px 20px;
  }

  .service-package__container {
    position: relative;
    height: 480px;
    display: block;
    gap: 0;
  }

  .service-package__card {
    position: absolute;
    left: 0;
    top: 50px;
    width: 46%;
    height: 380px;
    padding: 50px 40px;
    z-index: 1;
  }

  .service-package__title {
    font-size: 2.3rem;
  }

  .service-package__price {
    font-size: 1.75rem;
  }

  .service-package__media--main {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 380px;
    z-index: 1;
  }

  .service-package__media--overlay {
    position: absolute;
    left: 36%;
    bottom: 0;
    width: 35%;
    height: 250px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
}

/* ==========================================
   7. SEKCJA: PIA WHY (Dlaczego Porsche Inter Auto)
   ========================================== */
.pia-why {
  padding: 50px 20px;
  background-color: #ffffff;
}

.pia-why__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pia-why__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000000;
  margin: 0 0 32px 0;
  line-height: 1.2;
}

.pia-why__box {
  background-color: #00386b;
  background: linear-gradient(180deg, #00305d 0%, #00386b 100%);
  border-radius: 20px;
  padding: 40px 20px;
  color: #ffffff;
}

.pia-why__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.pia-why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pia-why__icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pia-why__icon {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pia-why__text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #ffffff;
}

@media (min-width: 576px) {
  .pia-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (min-width: 992px) {
  .pia-why {
    padding: 70px 20px;
  }

  .pia-why__title {
    font-size: 2.3rem;
    margin-bottom: 44px;
  }

  .pia-why__box {
    padding: 60px 40px;
  }

  .pia-why__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .pia-why__icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .pia-why__text {
    font-size: 1.05rem;
  }
}

/* ==========================================
   8. SEKCJA: HOW IT WORKS (Jak wygląda współpraca)
   ========================================== */
.how-it-works {
  padding: 50px 20px;
  background-color: #ffffff;
  color: #000000;
}

.how-it-works__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.how-it-works__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-it-works__title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #000000;
  margin: 0 0 36px 0;
  line-height: 1.2;
}

.how-it-works__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-it-works__step-box {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 8px;
}

.how-it-works__step-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.how-it-works__arrow {
  margin: 14px 0 14px 60px;
}

.how-it-works__media {
  width: 100%;
}

.how-it-works__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .how-it-works {
    padding: 80px 20px;
  }

  .how-it-works__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }

  .how-it-works__content {
    flex: 1;
  }

  .how-it-works__media {
    flex: 1.1;
  }

  .how-it-works__title {
    font-size: 2.4rem;
  }
}

/* ==========================================
   9. SEKCJA: KONTAKT / FORMULARZ
   ========================================== */
.section-blue {
  background: linear-gradient(90deg,
      rgba(1, 63, 117, 1) 50%,
      rgba(0, 33, 84, 1) 100%);
}

.photo-text {
  display: flex;
}

.photo-text.white {
  color: #ffffff;
}

.photo-text__between {
  justify-content: space-between;
}

.photo-text__center {
  align-items: center;
}

.photo-text__col--48 {
  width: 45%;
}

.title__h2 {
  font-size: 3rem;
  font-weight: 300;
}

.title__h2 strong {
  font-weight: 700;
}

.form-desc {
  font-size: 20px;
}

.c-bg-form {
  background-color: #ffffff;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 1024px) {
  .title__h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .photo-text {
    flex-direction: column;
  }

  .photo-text__col {
    width: 100%;
    padding-bottom: 2rem;
  }

  .photo-text__col.mobile-pt {
    padding-top: 50px;
  }
}

@media (max-width: 570px) {
  .title__h2 {
    font-size: 2.2rem;
  }
}

/* ==========================================
   10. FOOTER
   ========================================== */
.c-footer {
  background-color: #f4f4f4;
}

.c-footer-container {
  padding: 2rem;
}

.c-text-center {
  text-align: center;
}

.c-footer-title {
  font-size: 22px;
  margin-bottom: 1rem;
}

.c-footer-link {
  font-size: 16px;
}

@media (max-width: 525px) {
  .c-footer-title {
    font-size: 18px;
  }

  .c-footer-link {
    font-size: 14px;
  }
}