* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100vh;
  background: #F3F4F6;
  color: #1F2937;
  font-family: "Poppins", sans-serif;
}

body.menu-otwarte {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.naglowek {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #D1D5DB;
  backdrop-filter: blur(14px);
}

.nawigacja {
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}



.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 190px;
  height: auto;
  max-width: none;
  display: block;
}

.nawigacja ul {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nawigacja li {
  display: flex;
}

.nawigacja ul a {
  position: relative;
  padding: 8px 0;
  color: #1F2937;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nawigacja ul a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: #F97316;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nawigacja ul a:hover {
  color: #F97316;
}

.nawigacja ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 800px) {
  .nawigacja {
    height: 70px;
  }

  .logo img {
    width: 150px;
  }
}

.naglowek {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #D1D5DB;
  backdrop-filter: blur(14px);
}

.nawigacja {
  position: relative;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.logo img {
  display: block;
  width: 190px;
  max-width: none;
  height: auto;
}

.nawigacja ul {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nawigacja li {
  display: flex;
}

.nawigacja ul a {
  position: relative;
  padding: 8px 0;
  color: #1F2937;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nawigacja ul a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: #F97316;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nawigacja ul a:hover,
.nawigacja ul a:focus-visible,
.nawigacja ul a[aria-current="page"] {
  color: #F97316;
}

.nawigacja ul a:hover::after,
.nawigacja ul a:focus-visible::after,
.nawigacja ul a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hamburger:hover {
  background: rgba(249, 115, 22, 0.1);
}

.hamburger:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.22);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: #1F2937;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.hamburger.aktywny span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.aktywny span:nth-child(2) {
  opacity: 0;
}

.hamburger.aktywny span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-otwarte {
  overflow: hidden;
}

@media (max-width: 1000px) {
  .logo {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 1002;
    transform: translateY(-50%);
  }

  .logo img {
    width: 175px;
    height: auto;
  }

  .hamburger {
    position: relative;
    z-index: 1003;
    display: flex;
    margin-left: auto;
  }

  .nawigacja ul {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    max-height: 0;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #E5E7EB;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(31, 41, 55, 0.12);
    backdrop-filter: blur(14px);
    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .nawigacja ul.menu-otwarte {
    max-height: calc(100vh - 74px);
    padding-top: 14px;
    padding-bottom: 22px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nawigacja li {
    width: 100%;
  }

  .nawigacja ul a {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 14px 5px;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    font-size: 15px;
  }

  .nawigacja li:last-child a {
    border-bottom: 0;
  }

  .nawigacja ul a::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .nawigacja {
    height: 70px;
    padding: 0 14px;
  }

  .logo img {
    width: 165px;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  .nawigacja ul.menu-otwarte {
    max-height: calc(100vh - 70px);
  }
}

.hero {
  width: 100%;
}

.hero-tlo {
  min-height: 660px;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(30, 58, 138, 0.72),
      rgba(30, 58, 138, 0.22)
    ),
    url("assets/hero.png") center / cover no-repeat;
}

.hero-kontener {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.karta-wyceny {
  width: min(100%, 500px);
  padding: 42px;
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.26);
  backdrop-filter: blur(12px);
}

.karta-etykieta {
  display: inline-block;
  margin-bottom: 15px;
  color: #F97316;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.karta-wyceny h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.karta-wyceny > p {
  margin: 19px 0 28px;
  color: #4B5563;
  font-size: 16px;
  line-height: 1.7;
}

.formularz-adresu {
  display: flex;
  flex-direction: column;
}

.formularz-adresu label {
  margin-bottom: 9px;
  color: #1F2937;
  font-size: 14px;
  font-weight: 700;
}

.pole-adresu {
  position: relative;
}

.pole-adresu input {
  width: 100%;
  min-height: 58px;
  padding: 0 55px 0 17px;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  background: #ffffff;
  color: #1F2937;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pole-adresu input::placeholder {
  color: #9CA3AF;
}

.pole-adresu input:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.ikona-lokalizacji {
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  place-items: center;
  color: #1E3A8A;
  pointer-events: none;
  transform: translateY(-50%);
}

.blad-adresu {
  min-height: 25px;
  margin: 6px 0 4px;
  color: #EF4444;
  font-size: 13px;
}

.przycisk-wyceny,
.odbierz-wycene {
  min-height: 56px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #F97316;
  color: #ffffff;
  font-weight: 750;
  text-align: center;
  box-shadow: 0 13px 30px rgba(249, 115, 22, 0.24);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.przycisk-wyceny {
  width: 100%;
}

.przycisk-wyceny:hover,
.odbierz-wycene:hover {
  background: #EA580C;
  box-shadow: 0 17px 38px rgba(249, 115, 22, 0.31);
  transform: translateY(-2px);
}

.przycisk-wyceny:active,
.odbierz-wycene:active {
  transform: translateY(0);
}

.karta-zaufanie {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #4B5563;
  font-size: 13px;
  font-weight: 600;
}

.karta-zaufanie span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.karta-zaufanie span::before {
  content: "✓";
  color: #1E3A8A;
  font-weight: 900;
}

.korzysci {
  padding: 100px 20px;
  background: #ffffff;
}

.korzysci-kontener {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 90px;
}

.korzysci-tresc {
  min-width: 0;
  max-width: 590px;
}

.korzysci-tresc h2 {
  margin: 0;
  color: #1e3a8a;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.korzysci-tresc h2 strong {
  font-weight: 700;
}

.korzysci-tresc h3 {
  margin: 32px 0 23px;
  color: #1e3a8a;
  font-size: 18px;
  font-weight: 700;
}

.korzysci-wspolpracy {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 19px;
  list-style: none;
}

.korzysci-wspolpracy li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.55;
}

.korzysci-wspolpracy img {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  object-fit: contain;
}

.korzysci-wspolpracy span {
  padding-top: 2px;
}

.korzysci .odbierz-wycene {
  width: 100%;
  min-height: 54px;
  margin-top: 38px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f97316;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.korzysci .odbierz-wycene:hover {
  background: #ea580c;
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.28);
  transform: translateY(-2px);
}

.korzysci-zdjecia {
  position: relative;
  width: min(100%, 540px);
  margin-left: auto;
  padding: 0 42px 70px 0;
}

.zdjecie-glowne {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(30, 58, 138, 0.14);
}

.zdjecie-glowne img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.zdjecie-dodatkowe {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
  border: 7px solid #ffffff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.18);
}

.zdjecie-dodatkowe img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.etykieta-kontaktu {
  position: absolute;
  left: 22px;
  bottom: 27px;
  z-index: 2;
  padding: 10px 17px;
  border-radius: 8px;
  background: #f97316;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

@media (max-width: 950px) {
  .korzysci-kontener {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .korzysci-tresc {
    max-width: 680px;
  }

  .korzysci-zdjecia {
    width: min(100%, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .korzysci {
    padding: 70px 18px;
  }

  .korzysci-kontener {
    gap: 48px;
  }

  .korzysci-tresc h2 {
    font-size: 33px;
  }

  .korzysci-zdjecia {
    padding: 0 0 105px;
  }

  .zdjecie-dodatkowe {
    right: 10px;
    bottom: 14px;
    width: 54%;
    border-width: 5px;
  }

  .etykieta-kontaktu {
    left: 10px;
    bottom: 42px;
    max-width: 150px;
    font-size: 12px;
  }
}

.zdjecie-glowne {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(30, 58, 138, 0.14);
}

.zdjecie-glowne img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.zdjecie-dodatkowe {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  overflow: hidden;
  border: 7px solid #ffffff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.18);
}

.zdjecie-dodatkowe img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.etykieta-kontaktu {
  position: absolute;
  left: 24px;
  bottom: 23px;
  padding: 10px 17px;
  border-radius: 8px;
  background: #f97316;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

@media (max-width: 950px) {
  .korzysci-zdjecia {
    width: min(100%, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .korzysci-zdjecia {
    padding: 0 0 105px;
  }

  .zdjecie-glowne img {
    aspect-ratio: 4 / 3;
  }

  .zdjecie-dodatkowe {
    right: 14px;
    bottom: 15px;
    width: 52%;
  }

  .etykieta-kontaktu {
    left: 14px;
    bottom: 40px;
    max-width: 145px;
    font-size: 12px;
  }
}

.korzysci-wspolpracy img {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  object-fit: contain;
}

.korzysci-wspolpracy span {
  padding-top: 2px;
}

.odbierz-wycene {
  width: 100%;
  min-height: 54px;
  margin-top: 38px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #F97316;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.odbierz-wycene:hover {
  background: #EA580C;
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.28);
  transform: translateY(-2px);
}



.raport-ramka {
  width: min(100%, 450px);
  padding: 14px;
  border: 1px solid #D1D5DB;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(30, 58, 138, 0.12);
  transform: rotate(1.5deg);
}

.raport-ramka img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.raport-etykieta {
  position: absolute;
  top: 48%;
  left: -35px;
  min-height: 42px;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #F97316;
  border-radius: 30px;
  background: #ffffff;
  color: #F97316;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.12);
}

.raport-kropka {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #1E3A8A;
  box-shadow: 0 0 0 5px rgba(30, 58, 138, 0.14);
}

@media (max-width: 950px) {
  .korzysci-kontener {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .korzysci-tresc {
    max-width: 680px;
  }

  .korzysci-grafika {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .raport-ramka {
    width: min(100%, 500px);
  }
}

@media (max-width: 600px) {
  .korzysci {
    padding: 70px 18px;
  }

  .korzysci-kontener {
    gap: 50px;
  }

  .korzysci-tresc h2 {
    font-size: 33px;
  }

  .korzysci-tresc h3 {
    margin-top: 28px;
  }

  .korzysci-wspolpracy {
    gap: 18px;
  }

  .korzysci-wspolpracy li {
    gap: 13px;
    font-size: 14px;
  }

  .korzysci-wspolpracy img {
    width: 25px;
    height: 25px;
  }

  .odbierz-wycene {
    margin-top: 32px;
  }

  .raport-ramka {
    padding: 9px;
    border-radius: 11px;
    transform: none;
  }

  .raport-etykieta {
    position: relative;
    top: auto;
    left: auto;
    width: fit-content;
    margin: 18px auto 0;
    font-size: 12px;
  }
}

.odbierz-wycene {
  min-width: 250px;
}

.opinie {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.kontener-opinie {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.opinie h2 {
  max-width: 760px;
  margin: 0 auto 50px;
  color: #1E3A8A;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.karty-opinii {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.karta-opinii {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #D1D5DB;
  border-radius: 20px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 15px 45px rgba(30, 58, 138, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.karta-opinii:hover {
  border-color: rgba(249, 115, 22, 0.38);
  box-shadow: 0 22px 55px rgba(30, 58, 138, 0.11);
  transform: translateY(-4px);
}

.naglowek-opinii {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.autor-opinii h3 {
  margin: 0;
  color: #1E3A8A;
  font-size: 18px;
}

.ocena-opinii {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 19px;
  line-height: 1;
}

.tresc-opinii {
  margin: 27px 0;
  color: #4B5563;
  font-size: 16px;
  line-height: 1.75;
}

.tresc-opinii::before {
  content: "“";
  margin-right: 4px;
  color: #F97316;
  font-size: 30px;
  font-weight: 800;
  line-height: 0;
}

.data-opinii {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1E3A8A;
  font-size: 13px;
  font-weight: 700;
}

.data-opinii::before {
  content: "✓";
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.12);
}

.faq {
  padding: 100px 20px;
  background: #F3F4F6;
}

.faq-kontener {
  width: min(100%, 1050px);
  margin: 0 auto;
}

.faq-naglowek {
  max-width: 680px;
  margin-bottom: 45px;
}

.faq-etykieta {
  display: inline-block;
  margin-bottom: 12px;
  color: #F97316;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-naglowek h2 {
  margin: 0;
  color: #1E3A8A;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.faq-naglowek p {
  margin: 18px 0 0;
  color: #4B5563;
  font-size: 17px;
  line-height: 1.7;
}

.faq-lista {
  display: grid;
  gap: 14px;
}

.faq-element {
  overflow: hidden;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-element.aktywny {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.09);
}

.faq-pytanie {
  position: relative;
  width: 100%;
  min-height: 76px;
  padding: 22px 66px 22px 26px;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #1E3A8A;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-pytanie:hover,
.faq-element.aktywny .faq-pytanie {
  color: #F97316;
}

.faq-pytanie:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.23);
  outline-offset: -3px;
}

.faq-ikona {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

.faq-ikona::before,
.faq-ikona::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: #F97316;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-ikona::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-element.aktywny .faq-ikona::after {
  transform: translate(-50%, -50%);
}

.faq-odpowiedz {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.faq-element.aktywny .faq-odpowiedz {
  opacity: 1;
}

.faq-tresc {
  padding: 0 66px 26px 26px;
}

.faq-tresc p {
  margin: 0;
  color: #4B5563;
  font-size: 15px;
  line-height: 1.75;
}

.stopka {
  padding: 75px 20px 25px;
  background: #1E3A8A;
  color: #ffffff;
}

.stopka-kontener {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.stopka-logo {
  display: inline-block;
  margin-bottom: 17px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 850;
}

.stopka-marka p {
  max-width: 340px;
  margin: 0;
  color: #D1D5DB;
  line-height: 1.75;
}

.stopka h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 16px;
}

.stopka ul {
  list-style: none;
}

.stopka li + li {
  margin-top: 12px;
}

.stopka a {
  color: #D1D5DB;
  transition: color 0.25s ease;
}

.stopka a:hover {
  color: #F97316;
}

.stopka-ikony {
  display: flex;
  gap: 22px;
}

.stopka-ikony a {
  width: 66px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.stopka-ikony a:hover {
  border-color: #8e94a2;
  background: rgba(30, 58, 138, 0.12);
  transform: translateY(-2px);
}

.stopka-ikony img {
  width: 33px;
  height: 33px;
  
}

.stopka-dol {
  width: min(1180px, 100%);
  margin: 55px auto 0;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stopka-dol p {
  margin: 0;
  color: #9CA3AF;
  font-size: 14px;
}

.podpisek {
  margin-left: 5px;
}

.stopka-dokumenty {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.stopka-dokumenty a {
  font-size: 14px;
}

@media (max-width: 1000px) {
  .korzysci-wspolpracy,
  .karty-opinii {
    grid-template-columns: repeat(2, 1fr);
  }

  .stopka-kontener {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .nawigacja {
    position: relative;
    min-height: 70px;
  }

  

  .logo img {
    width: 150px;
  }

  .nawigacja ul {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    height: calc(100vh - 70px);
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    background: #ffffff;
    border-top: 1px solid #D1D5DB;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .nawigacja.aktywna ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  

  .nawigacja ul a {
    font-size: 19px;
  }

  .hero-tlo {
    min-height: auto;
    padding: 70px 20px;
    background-position: 62% center;
  }

  .karta-wyceny {
    padding: 34px 28px;
  }

  .korzysci,
  .opinie,
  .faq {
    padding: 75px 18px;
  }

  .faq-naglowek {
    margin-bottom: 34px;
  }

  .faq-pytanie {
    min-height: 70px;
    padding: 20px 58px 20px 20px;
    font-size: 16px;
  }

  .faq-ikona {
    right: 20px;
  }

  .faq-tresc {
    padding: 0 20px 22px;
  }
}

@media (max-width: 620px) {
  .nawigacja {
    width: min(100% - 28px, 1180px);
  }

  .hero-tlo {
    padding: 50px 14px;
  }

  .karta-wyceny {
    padding: 29px 20px;
    border-radius: 18px;
  }

  .karta-wyceny h1 {
    font-size: 34px;
  }

  .karta-zaufanie {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .korzysci,
  .opinie,
  .faq {
    padding: 62px 14px;
  }

  .korzysci h2,
  .opinie h2,
  .faq-naglowek h2 {
    font-size: 32px;
  }

  .korzysci-wspolpracy,
  .karty-opinii,
  .stopka-kontener {
    grid-template-columns: 1fr;
  }

  .korzysci-wspolpracy li {
    min-height: auto;
  }

  .karta-opinii {
    min-height: auto;
  }

  .faq-naglowek p {
    font-size: 15px;
  }

  .faq-element {
    border-radius: 13px;
  }

  .faq-pytanie {
    padding: 18px 52px 18px 17px;
  }

  .faq-ikona {
    right: 17px;
  }

  .faq-tresc {
    padding: 0 17px 20px;
  }

  .stopka {
    padding: 58px 18px 22px;
  }

  .stopka-kontener {
    gap: 38px;
  }

  .stopka-dol {
    margin-top: 42px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-agenci {
  min-height: 620px;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  background-color: #1e3a8a;
}

.hero-agenci-kontener {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-agenci-tresc {
  max-width: 1090px;
  margin: 0 auto;
  text-align: center;
  color: #e5e7eb;
}

.hero-agenci-etykieta {
  display: inline-block;
  margin-bottom: 18px;
  color: #fdba74;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-agenci h1 {
  margin: 0;
  color: #e5e7eb;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-agenci h1 strong {
  display: block;
  color: #fb923c;
  font-weight: 700;
}

.hero-agenci-tresc > p {
  max-width: 690px;
  margin: 25px auto 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.75;
}

.hero-agenci-przyciski {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.przycisk-glowny,
.przycisk-drugi {
  min-height: 54px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.przycisk-glowny {
  background: #f97316;
  color: #ffffff;
}

.przycisk-glowny:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.przycisk-drugi {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.przycisk-drugi:hover {
  background: #ffffff;
  color: #1e3a8a;
  transform: translateY(-2px);
}

.hero-agenci-zalety {
  margin-top: 33px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: #f3f4f6;
  font-size: 14px;
  font-weight: 500;
}

.hero-agenci-zalety span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-agenci-zalety span::before {
  content: "✓";
  color: #fb923c;
  font-weight: 800;
}

@media (max-width: 700px) {
  .hero-agenci {
    min-height: auto;
    padding: 85px 18px;
  }

  .hero-agenci h1 {
    font-size: 40px;
  }

  .hero-agenci-tresc > p {
    font-size: 16px;
  }

  .hero-agenci-przyciski {
    flex-direction: column;
  }

  .przycisk-glowny,
  .przycisk-drugi {
    width: 100%;
  }

  .hero-agenci-zalety {
    flex-direction: column;
    align-items: center;
  }
}

.co-zawiera-lead,
.dlaczego-warto,
.kogo-szukamy,
.opinie-agentow,
.faq-agenci {
  padding: 100px 20px;
}

.co-zawiera-lead,
.dlaczego-warto,
.kogo-szukamy {
  width: 100%;
}

.co-zawiera-lead > h2,
.co-zawiera-lead > h3,
.co-zawiera-lead > ul,
.dlaczego-warto > h2,
.dlaczego-warto > ol,
.kogo-szukamy > h2,
.kogo-szukamy > h3,
.kogo-szukamy > p,
.kogo-szukamy > ul {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.co-zawiera-lead {
  background: #ffffff;
}

.co-zawiera-lead h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #000000;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.035em;
  text-align: center;
}

.co-zawiera-lead h3 {
  margin-bottom: 42px;
  color: #4b5563;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

.co-zawiera-lead ul {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  list-style: none;
}

.co-zawiera-lead li {
  position: relative;
  min-height: 63px;
  padding: 19px 12px 19px 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.co-zawiera-lead li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 700;
}

.dlaczego-warto {
  background: #f3f4f6;
}

.dlaczego-warto h2 {
  max-width: 850px;
  margin-bottom: 56px;
  color: #000000;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.dlaczego-warto ol {
  max-width: 920px;
  padding: 0;
  list-style: none;
  counter-reset: korzysc;
}

.dlaczego-warto ol > li {
  counter-increment: korzysc;
  display: flex;
  align-items: center;
  gap: 19px;
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.dlaczego-warto ol > li::before {
  content: counter(korzysc, decimal-leading-zero);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1e3a8a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.dlaczego-warto ol > p {
  margin: 8px 0 28px 67px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d1d5db;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.dlaczego-warto ol > p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.kogo-szukamy {
  background: #ffffff;
}

.kogo-szukamy h2 {
  max-width: 860px;
  margin-bottom: 24px;
  color: #000000;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.kogo-szukamy > p {
  max-width: 860px;
  margin-bottom: 45px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.kogo-szukamy h3 {
  margin-bottom: 22px;
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
}

.kogo-szukamy ul {
  max-width: 860px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 42px;
  list-style: none;
}

.kogo-szukamy li {
  position: relative;
  padding: 14px 10px 14px 38px;
  border-bottom: 1px solid #e5e7eb;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.55;
}

.kogo-szukamy li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 8px;
  width: 10px;
  height: 10px;
  border: 3px solid #f97316;
  border-radius: 50%;
}

.opinie-agentow {
  background: #f3f4f6;
}

.opinie-agentow-kontener {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.opinie-agentow-naglowek {
  max-width: 760px;
  margin-bottom: 52px;
}

.opinie-agentow-etykieta {
  display: inline-block;
  margin-bottom: 13px;
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.opinie-agentow-naglowek h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.opinie-agentow-naglowek p {
  margin: 20px 0 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.75;
}

.opinie-agentow-lista {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.opinia-agenta {
  min-height: 390px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.opinia-agenta:hover {
  border-color: rgba(30, 58, 138, 0.35);
  box-shadow: 0 18px 42px rgba(30, 58, 138, 0.1);
  transform: translateY(-3px);
}

.opinia-agenta-ocena {
  margin-bottom: 23px;
  display: flex;
  gap: 3px;
  color: #f97316;
  font-size: 18px;
  line-height: 1;
}

.opinia-agenta h3 {
  margin: 0 0 19px;
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.opinia-agenta blockquote {
  margin: 0 0 27px;
}

.opinia-agenta blockquote p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.opinia-agenta-autor {
  margin-top: auto;
  padding-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid #e5e7eb;
  background: transparent;
}

.opinia-agenta-autor strong {
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
}

.opinia-agenta-autor span {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.CTA-agenci {
  padding: 90px 20px;
  background:
    linear-gradient(
      rgba(30, 58, 138, 0.82),
      rgba(30, 58, 138, 0.82)
    ),
    url("assets/Zdjęcie 6.png") center 10% / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.CTA-agenci h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.CTA-agenci p {
  max-width: 700px;
  margin: 22px auto 33px;
  color: #e5e7eb;
  font-size: 17px;
  line-height: 1.75;
}

.CTA-agenci a {
  min-height: 54px;
  padding: 14px 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f97316;
  border-radius: 9px;
  background: #f97316;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.CTA-agenci a:hover {
  border-color: #ea580c;
  background: #ea580c;
  transform: translateY(-2px);
}

.CTA-agenci a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.faq-agenci {
  background: #ffffff;
}

.faq-agenci-kontener {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.faq-agenci-naglowek {
  max-width: 720px;
  margin-bottom: 48px;
}

.faq-agenci-etykieta {
  display: inline-block;
  margin-bottom: 13px;
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-agenci-naglowek h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.faq-agenci-naglowek p {
  margin: 19px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.faq-agenci-lista {
  border-top: 1px solid #d1d5db;
}

.faq-agenci-element {
  border-bottom: 1px solid #d1d5db;
}

.faq-agenci-pytanie {
  position: relative;
  width: 100%;
  min-height: 82px;
  padding: 24px 58px 24px 0;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #1f2937;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-agenci-pytanie:hover,
.faq-agenci-element.aktywny .faq-agenci-pytanie {
  color: #1e3a8a;
}

.faq-agenci-pytanie:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.25);
  outline-offset: 4px;
}

.faq-agenci-ikona {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

.faq-agenci-ikona::before,
.faq-agenci-ikona::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: #f97316;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-agenci-ikona::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-agenci-element.aktywny .faq-agenci-ikona::after {
  transform: translate(-50%, -50%);
}

.faq-agenci-odpowiedz {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.faq-agenci-element.aktywny .faq-agenci-odpowiedz {
  opacity: 1;
}

.faq-agenci-tresc {
  max-width: 850px;
  padding: 0 58px 27px 0;
}

.faq-agenci-tresc p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .co-zawiera-lead,
  .dlaczego-warto,
  .kogo-szukamy,
  .opinie-agentow,
  .faq-agenci {
    padding: 82px 20px;
  }

  .opinie-agentow-lista {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opinia-agenta:last-child {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .co-zawiera-lead ul,
  .kogo-szukamy ul {
    grid-template-columns: 1fr;
  }

  .co-zawiera-lead ul {
    max-width: 650px;
  }

  .kogo-szukamy ul {
    max-width: 650px;
  }

  .dlaczego-warto h2,
  .kogo-szukamy h2 {
    max-width: 680px;
  }

  .opinie-agentow-naglowek {
    margin-bottom: 38px;
  }

  .opinie-agentow-lista {
    grid-template-columns: 1fr;
  }

  .opinia-agenta,
  .opinia-agenta:last-child {
    width: 100%;
    min-height: auto;
    grid-column: auto;
  }

  .CTA-agenci {
    padding: 75px 18px;
  }
}

@media (max-width: 560px) {
  .co-zawiera-lead,
  .dlaczego-warto,
  .kogo-szukamy,
  .opinie-agentow,
  .faq-agenci {
    padding: 66px 16px;
  }

  .co-zawiera-lead h2,
  .dlaczego-warto h2,
  .kogo-szukamy h2,
  .opinie-agentow-naglowek h2,
  .faq-agenci-naglowek h2,
  .CTA-agenci h2 {
    font-size: 32px;
  }

  .co-zawiera-lead h3 {
    margin-bottom: 28px;
  }

  .co-zawiera-lead li {
    min-height: 58px;
    padding: 16px 6px 16px 39px;
    font-size: 14px;
  }

  .dlaczego-warto h2 {
    margin-bottom: 40px;
  }

  .dlaczego-warto ol > li {
    gap: 14px;
    font-size: 18px;
  }

  .dlaczego-warto ol > li::before {
    width: 42px;
    height: 42px;
  }

  .dlaczego-warto ol > p {
    margin-left: 56px;
    font-size: 14px;
  }

  .kogo-szukamy > p {
    font-size: 15px;
  }

  .opinia-agenta {
    padding: 26px 22px;
  }

  .CTA-agenci {
    padding: 65px 16px;
  }

  .CTA-agenci p {
    font-size: 15px;
  }

  .CTA-agenci a {
    width: 100%;
  }

  .faq-agenci-naglowek {
    margin-bottom: 34px;
  }

  .faq-agenci-pytanie {
    min-height: 74px;
    padding: 20px 50px 20px 0;
    font-size: 15px;
  }

  .faq-agenci-tresc {
    padding: 0 0 23px;
  }

  .faq-agenci-tresc p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opinia-agenta,
  .CTA-agenci a,
  .faq-agenci-ikona::before,
  .faq-agenci-ikona::after,
  .faq-agenci-odpowiedz {
    transition: none;
  }
}

.formularz-agentow {
  padding: 110px 20px;
  background: #f3f4f6;
}

.formularz-agentow-kontener {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 80px;
  align-items: start;
}

.formularz-agentow-wprowadzenie {
  position: sticky;
  top: 120px;
  padding-top: 12px;
}

.formularz-agentow-etykieta {
  display: inline-block;
  margin-bottom: 15px;
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.formularz-agentow-wprowadzenie h2 {
  max-width: 520px;
  margin: 0;
  color: #000000;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.formularz-agentow-wprowadzenie > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.formularz-agentow-korzysci {
  margin: 35px 0 0;
  padding: 0;
  display: grid;
  gap: 17px;
  list-style: none;
}

.formularz-agentow-korzysci li {
  position: relative;
  padding-left: 37px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.formularz-agentow-korzysci li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8edfb;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
}

.formularz-agentow-informacja {
  max-width: 530px;
  margin-top: 42px;
  padding: 22px 24px;
  border-left: 3px solid #f97316;
  background: #ffffff;
}

.formularz-agentow-informacja strong {
  display: block;
  margin-bottom: 6px;
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 700;
}

.formularz-agentow-informacja p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.formularz-agentow-panel {
  padding: 38px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(30, 58, 138, 0.08);
}

.formularz-agentow-formularz {
  display: grid;
  gap: 22px;
}

.formularz-agentow-rzad {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.formularz-agentow-pole {
  display: grid;
  gap: 8px;
}

.formularz-agentow-pole label {
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.formularz-agentow-pole label span {
  color: #ef4444;
}

.formularz-agentow-pole input,
.formularz-agentow-pole select,
.formularz-agentow-pole textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.formularz-agentow-pole input,
.formularz-agentow-pole select {
  height: 52px;
  padding: 0 15px;
}

.formularz-agentow-pole textarea {
  min-height: 135px;
  padding: 14px 15px;
  line-height: 1.65;
  resize: vertical;
}

.formularz-agentow-pole input::placeholder,
.formularz-agentow-pole textarea::placeholder {
  color: #9ca3af;
}

.formularz-agentow-pole input:hover,
.formularz-agentow-pole select:hover,
.formularz-agentow-pole textarea:hover {
  border-color: #9ca3af;
}

.formularz-agentow-pole input:focus,
.formularz-agentow-pole select:focus,
.formularz-agentow-pole textarea:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.formularz-agentow-pole input:invalid:not(:placeholder-shown),
.formularz-agentow-pole textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.formularz-agentow-zgoda {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
  cursor: pointer;
}

.formularz-agentow-zgoda input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #1e3a8a;
  cursor: pointer;
}

.formularz-agentow-zgoda a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.formularz-agentow-przycisk {
  width: 100%;
  min-height: 55px;
  padding: 14px 28px;
  border: 1px solid #f97316;
  border-radius: 9px;
  background: #f97316;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.formularz-agentow-przycisk:hover {
  border-color: #ea580c;
  background: #ea580c;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.formularz-agentow-przycisk:active {
  transform: translateY(0);
}

.formularz-agentow-przycisk:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.3);
  outline-offset: 4px;
}

.formularz-agentow-dopisek {
  margin: -6px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.formularz-agentow-pulapka {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .formularz-agentow {
    padding: 90px 20px;
  }

  .formularz-agentow-kontener {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .formularz-agentow-wprowadzenie {
    position: static;
    max-width: 760px;
  }

  .formularz-agentow-panel {
    width: min(100%, 760px);
  }
}

@media (max-width: 650px) {
  .formularz-agentow {
    padding: 70px 16px;
  }

  .formularz-agentow-kontener {
    gap: 38px;
  }

  .formularz-agentow-wprowadzenie h2 {
    font-size: 34px;
  }

  .formularz-agentow-wprowadzenie > p {
    font-size: 15px;
  }

  .formularz-agentow-panel {
    padding: 27px 20px;
    border-radius: 11px;
  }

  .formularz-agentow-rzad {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .formularz-agentow {
    padding-right: 14px;
    padding-left: 14px;
  }

  .formularz-agentow-panel {
    padding: 24px 16px;
  }

  .formularz-agentow-wprowadzenie h2 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .formularz-agentow-pole input,
  .formularz-agentow-pole select,
  .formularz-agentow-pole textarea,
  .formularz-agentow-przycisk {
    transition: none;
  }
}

.strona-wyceny,
.strona-wyceny *,
.strona-wyceny *::before,
.strona-wyceny *::after {
  box-sizing: border-box;
}

body.strona-wyceny {
  margin: 0;
  background: #f3f4f6;
  color: #1f2937;
  font-family: "Poppins", sans-serif;
}

.strona-wyceny button,
.strona-wyceny input,
.strona-wyceny select,
.strona-wyceny textarea {
  font: inherit;
}

.strona-wyceny button,
.strona-wyceny label {
  -webkit-tap-highlight-color: transparent;
}

.strona-wyceny .hidden {
  display: none !important;
}

.wycena-wstep {
  padding: 115px 20px 80px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.wycena-wstep-kontener {
  width: min(100%, 970px);
  margin: 0 auto;
  text-align: center;
}

.wycena-etykieta {
  display: inline-block;
  margin-bottom: 18px;
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wycena-wstep h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #1e3a8a;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.wycena-wstep p {
  max-width: 740px;
  margin: 26px auto 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.wycena-zalety {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 30px;
}

.wycena-zalety span {
  position: relative;
  padding-left: 24px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.wycena-zalety span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: 700;
}

.estimator {
  padding: 90px 20px 110px;
  scroll-margin-top: 100px;
}

.estimator-kontener {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 55px;
  align-items: start;
}

.estimator-informacje {
  position: sticky;
  top: 110px;
  padding: 18px 0;
}

.estimator-informacje-etykieta {
  display: inline-block;
  margin-bottom: 15px;
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.estimator-informacje h2 {
  margin: 0;
  color: #1e3a8a;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.estimator-informacje > p {
  margin: 21px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

.estimator-kroki {
  margin: 37px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
  list-style: none;
}

.estimator-kroki li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.estimator-kroki li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #c7d2fe;
  border-radius: 50%;
  background: #ffffff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 700;
}

.estimator-kroki strong {
  display: block;
  margin-top: 1px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.estimator-kroki p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.estimator-informacja-prawna {
  margin-top: 36px;
  padding: 17px 18px;
  border-left: 3px solid #f97316;
  background: #ffffff;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.7;
}

.estimator-panel {
  min-width: 0;
  padding: 36px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(30, 58, 138, 0.07);
}

.property-type {
  margin-bottom: 38px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #f3f4f6;
}

.property-type button {
  min-height: 49px;
  padding: 10px 15px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.property-type button:hover {
  color: #1e3a8a;
}

.property-type button.active {
  background: #ffffff;
  color: #1e3a8a;
  box-shadow: 0 3px 12px rgba(30, 58, 138, 0.1);
}

.formularz-sekcja {
  padding: 34px 0;
  border-top: 1px solid #e5e7eb;
}

.formularz-sekcja:first-child {
  padding-top: 0;
  border-top: 0;
}

.formularz-sekcja-naglowek {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.numer-sekcji {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
}

.formularz-sekcja-naglowek h2 {
  margin: 0;
  color: #1f2937;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

.formularz-sekcja-naglowek p {
  margin: 5px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.65;
}

.formularz-podtytul {
  margin: 0 0 23px;
  color: #1e3a8a;
  font-size: 17px;
  font-weight: 600;
}

.formularz-podtytul-mniejszy {
  margin-top: 30px;
  font-size: 15px;
}

.pola-siatka {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

.pole-pelne {
  grid-column: 1 / -1;
}

.pole-formularza {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.pole-formularza > label {
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.wymagane {
  color: #ef4444;
}

.pole-formularza input,
.pole-formularza select,
.pole-formularza textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pole-formularza > input,
.pole-formularza > select {
  height: 52px;
  padding: 0 14px;
}

.pole-formularza input::placeholder,
.pole-formularza textarea::placeholder {
  color: #9ca3af;
}

.pole-formularza input:hover,
.pole-formularza select:hover,
.pole-formularza textarea:hover {
  border-color: #9ca3af;
}

.pole-formularza input:focus,
.pole-formularza select:focus,
.pole-formularza textarea:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.pole-formularza small {
  color: #6b7280;
  font-size: 11px;
  line-height: 1.5;
}

.counter {
  height: 52px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.counter:focus-within {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.counter button {
  border: 0;
  background: #f9fafb;
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.counter button:hover {
  background: #eef2ff;
}

.counter input {
  height: 100%;
  padding: 0 5px;
  border: 0;
  border-right: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  appearance: textfield;
}

.counter input:focus {
  border-color: #e5e7eb;
  box-shadow: none;
}

.counter input::-webkit-inner-spin-button,
.counter input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

#houseFields,
#plotFields {
  display: none;
}

.estimator:has(#plotBtn.active) #buildingDetails {
  display: none;
}

.opcje-siatka {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.opcja-pelna {
  grid-column: 1 / -1;
}

.opcja-karta {
  min-height: 57px;
  padding: 13px 15px;
  display: flex;
  gap: 11px;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.opcja-karta:hover {
  border-color: #a5b4fc;
  background: #f9fafb;
}

.opcja-karta:has(input:checked) {
  border-color: #1e3a8a;
  background: #eef2ff;
  color: #1e3a8a;
}

.opcja-karta input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #1e3a8a;
  cursor: pointer;
}

.radio-lista {
  display: grid;
  gap: 12px;
}

.radio-karta {
  padding: 16px 17px;
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 13px;
  align-items: start;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.radio-karta:hover {
  border-color: #a5b4fc;
}

.radio-karta:has(input:checked) {
  border-color: #1e3a8a;
  background: #eef2ff;
}

.radio-karta input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #1e3a8a;
  cursor: pointer;
}

.radio-karta strong {
  display: block;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.radio-karta small {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.55;
}

.przycisk-estymatora {
  width: 100%;
  min-height: 55px;
  padding: 14px 24px;
  border: 1px solid #f97316;
  border-radius: 8px;
  background: #f97316;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.przycisk-estymatora:hover {
  border-color: #ea580c;
  background: #ea580c;
  box-shadow: 0 9px 20px rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.przycisk-estymatora:active {
  transform: translateY(0);
}

.przycisk-estymatora:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.3);
  outline-offset: 4px;
}

.przycisk-estymatora:disabled {
  border-color: #fdba74;
  background: #fdba74;
  cursor: wait;
  box-shadow: none;
  transform: none;
}

.wynik-estymatora {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #d1d5db;
}

.wynik-estymatora-naglowek {
  margin-bottom: 22px;
}

.wynik-estymatora-naglowek > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #f97316;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wynik-estymatora-naglowek h2 {
  margin: 0;
  color: #1e3a8a;
  font-size: 26px;
  font-weight: 600;
}

.wynik-cena {
  margin-bottom: 30px;
  padding: 25px;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  background: #eef2ff;
  text-align: center;
}

.wynik-cena h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 700;
}

.wynik-cena p {
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.7;
}

.formularz-kontaktowy-wycena {
  display: grid;
  gap: 25px;
}

.formularz-kontaktowy-naglowek h3,
.preferencje-wyceny h3 {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
}

.formularz-kontaktowy-naglowek p,
.preferencje-wyceny > p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}

.preferencje-wyceny {
  padding-top: 3px;
}

.preferencje-wyceny .opcje-siatka {
  margin-top: 17px;
}

.zgoda-wycena {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  color: #4b5563;
  font-size: 11px;
  line-height: 1.7;
  cursor: pointer;
}

.zgoda-wycena input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #1e3a8a;
  cursor: pointer;
}

.zgoda-wycena a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kod-weryfikacyjny {
  margin-top: 35px;
  padding: 27px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
}

.kod-weryfikacyjny-naglowek {
  margin-bottom: 22px;
}

.kod-weryfikacyjny-naglowek > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #f97316;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kod-weryfikacyjny-naglowek h2 {
  margin: 0;
  color: #1e3a8a;
  font-size: 22px;
  font-weight: 600;
}

.kod-weryfikacyjny-naglowek p {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.7;
}

.kod-weryfikacyjny form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.8fr);
  gap: 13px;
  align-items: end;
}

.kod-weryfikacyjny input {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}

.wycena-dolna-informacja {
  padding: 70px 20px;
  
}

.wycena-dolna-informacja > div {
  width: min(100%, 850px);
  margin: 0 auto;
  text-align: center;
}

.wycena-dolna-informacja h2 {
  margin: 0;
  color: #797373fb;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}

.wycena-dolna-informacja p {
  margin: 20px auto 0;
  color: #67686a;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1020px) {
  .estimator-kontener {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .estimator-informacje {
    position: static;
    max-width: 800px;
    padding: 0;
  }

  .estimator-kroki {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimator-informacja-prawna {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .wycena-wstep {
    padding: 90px 18px 65px;
  }

  .wycena-wstep h1 {
    font-size: 42px;
  }

  .wycena-wstep p {
    font-size: 15px;
  }

  .estimator {
    padding: 65px 16px 80px;
  }

  .estimator-kroki {
    grid-template-columns: 1fr;
  }

  .estimator-panel {
    padding: 27px 20px;
    border-radius: 11px;
  }

  .property-type {
    margin-bottom: 30px;
  }

  .property-type button {
    min-height: 47px;
    padding: 9px 7px;
    font-size: 12px;
  }

  .pola-siatka,
  .opcje-siatka {
    grid-template-columns: 1fr;
  }

  .pole-pelne,
  .opcja-pelna {
    grid-column: auto;
  }

  .formularz-sekcja {
    padding: 29px 0;
  }

  .formularz-sekcja-naglowek {
    grid-template-columns: 37px 1fr;
    gap: 12px;
  }

  .numer-sekcji {
    width: 37px;
    height: 37px;
  }

  .formularz-sekcja-naglowek h2 {
    font-size: 19px;
  }

  .kod-weryfikacyjny {
    padding: 23px 18px;
  }

  .kod-weryfikacyjny form {
    grid-template-columns: 1fr;
  }

  .wycena-dolna-informacja {
    padding: 60px 18px;
  }
}

@media (max-width: 480px) {
  .wycena-wstep {
    padding: 76px 15px 55px;
  }

  .wycena-wstep h1 {
    font-size: 35px;
  }

  .wycena-zalety {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .estimator {
    padding-right: 12px;
    padding-left: 12px;
  }

  .estimator-informacje h2 {
    font-size: 29px;
  }

  .estimator-panel {
    padding: 23px 15px;
  }

  .property-type {
    gap: 3px;
    padding: 4px;
  }

  .property-type button {
    padding: 8px 4px;
    font-size: 11px;
  }

  .counter {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .opcja-karta,
  .radio-karta {
    padding: 14px 13px;
  }

  .wynik-cena {
    padding: 22px 15px;
  }

  .kod-weryfikacyjny {
    padding: 21px 15px;
  }

  .wycena-dolna-informacja h2 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strona-wyceny *,
  .strona-wyceny *::before,
  .strona-wyceny *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.strona-kontakt {
  margin: 0;
  background: #f6f8fb;
  color: #172033;
  font-family: "Poppins", sans-serif;
}

.kontakt-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 24px 100px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(52, 116, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #071936 0%,
      #0c2c61 55%,
      #134798 100%
    );
  color: #ffffff;
}

.kontakt-hero::before {
  position: absolute;
  top: 50px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.kontakt-hero::after {
  position: absolute;
  right: 130px;
  bottom: -160px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.kontakt-hero-kontener {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.kontakt-etykieta {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.kontakt-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.kontakt-hero p {
  max-width: 670px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.kontakt-sekcja {
  padding: 90px 24px 110px;
}

.kontakt-kontener {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.kontakt-informacje {
  position: sticky;
  top: 110px;
}

.kontakt-informacje-etykieta {
  display: inline-block;
  margin-bottom: 16px;
  color: #1c5ed8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kontakt-informacje h2 {
  max-width: 520px;
  margin: 0;
  color: #10203a;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.kontakt-informacje > p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #637087;
  font-size: 16px;
  line-height: 1.75;
}

.kontakt-dane {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.kontakt-dane-element {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.kontakt-ikona {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #dce5f3;
  border-radius: 15px;
  background: #ffffff;
  color: #1c5ed8;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(26, 48, 85, 0.07);
}

.kontakt-dane-element strong {
  display: block;
  margin-bottom: 4px;
  color: #172033;
  font-size: 14px;
}

.kontakt-dane-element a,
.kontakt-dane-element p {
  margin: 0;
  color: #637087;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.kontakt-dane-element a:hover {
  color: #1c5ed8;
}

.kontakt-wycena {
  margin-top: 38px;
  padding: 25px;
  border: 1px solid #dce5f3;
  border-radius: 22px;
  background: #eef4ff;
}

.kontakt-wycena h3 {
  margin: 0;
  color: #10203a;
  font-size: 18px;
}

.kontakt-wycena p {
  margin: 9px 0 17px;
  color: #637087;
  font-size: 14px;
  line-height: 1.6;
}

.kontakt-wycena a {
  display: inline-flex;
  color: #1c5ed8;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.kontakt-formularz-karta {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid #dfe6f1;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 46, 84, 0.1);
}

.kontakt-formularz-naglowek {
  padding-bottom: 28px;
  border-bottom: 1px solid #e8edf4;
}

.kontakt-formularz-naglowek span {
  color: #1c5ed8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kontakt-formularz-naglowek h2 {
  margin: 9px 0 0;
  color: #10203a;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.kontakt-formularz-naglowek p {
  margin: 13px 0 0;
  color: #68758b;
  font-size: 14px;
  line-height: 1.7;
}

.kontakt-formularz {
  margin-top: 30px;
}

.kontakt-pola-siatka {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

.kontakt-pole {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.kontakt-pole-pelne {
  grid-column: 1 / -1;
}

.kontakt-pole label {
  color: #29364b;
  font-size: 13px;
  font-weight: 600;
}

.kontakt-pole label span {
  color: #d33737;
}

.kontakt-pole input,
.kontakt-pole select,
.kontakt-pole textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #d8e0eb;
  border-radius: 13px;
  outline: none;
  background: #f9fbfd;
  color: #172033;
  font: inherit;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.kontakt-pole input,
.kontakt-pole select {
  height: 52px;
  padding: 0 15px;
}

.kontakt-pole textarea {
  min-height: 165px;
  padding: 15px;
  line-height: 1.65;
  resize: vertical;
}

.kontakt-pole input::placeholder,
.kontakt-pole textarea::placeholder {
  color: #98a3b4;
}

.kontakt-pole input:focus,
.kontakt-pole select:focus,
.kontakt-pole textarea:focus {
  border-color: #3474e8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(52, 116, 232, 0.11);
}

.kontakt-zgoda {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  color: #667287;
  font-size: 12px;
  line-height: 1.65;
  cursor: pointer;
}

.kontakt-zgoda input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: #1c5ed8;
}

.kontakt-zgoda a {
  color: #1c5ed8;
  font-weight: 600;
}

.kontakt-przycisk {
  display: inline-flex;
  min-height: 54px;
  margin-top: 26px;
  padding: 14px 27px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  background: #1659cf;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(22, 89, 207, 0.23);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.kontakt-przycisk:hover {
  background: #104aae;
  box-shadow: 0 17px 35px rgba(22, 89, 207, 0.3);
  transform: translateY(-2px);
}

.kontakt-przycisk:active {
  transform: translateY(0);
}

.kontakt-formularz-informacja {
  margin: 12px 0 0;
  color: #8993a3;
  font-size: 11px;
}

.kontakt-pulapka {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .kontakt-hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .kontakt-kontener {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .kontakt-informacje {
    position: static;
  }

  .kontakt-informacje > p {
    max-width: 700px;
  }

  .kontakt-dane {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kontakt-dane-element {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .kontakt-hero {
    padding: 115px 18px 65px;
  }

  .kontakt-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .kontakt-hero p {
    font-size: 16px;
  }

  .kontakt-sekcja {
    padding: 60px 15px 80px;
  }

  .kontakt-dane {
    grid-template-columns: 1fr;
  }

  .kontakt-dane-element {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .kontakt-ikona {
    width: 48px;
    height: 48px;
  }

  .kontakt-formularz-karta {
    border-radius: 21px;
  }

  .kontakt-pola-siatka {
    grid-template-columns: 1fr;
  }

  .kontakt-pole-pelne {
    grid-column: auto;
  }

  .kontakt-przycisk {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .kontakt-hero {
    padding-right: 15px;
    padding-left: 15px;
  }

  .kontakt-formularz-karta {
    padding: 22px 17px;
  }

  .kontakt-wycena {
    padding: 21px;
  }
}

.strona-podziekowania {
  margin: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 116, 255, 0.22),
      transparent 35%
    ),
    #071936;
  font-family: "Poppins", sans-serif;
}

.podziekowanie {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
  box-sizing: border-box;
}

.podziekowanie-karta {
  width: min(620px, 100%);
  padding: clamp(35px, 6vw, 65px);
  box-sizing: border-box;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.podziekowanie-karta span {
  color: #1c5ed8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.podziekowanie-karta h1 {
  margin: 13px 0 0;
  color: #10203a;
  font-size: clamp(34px, 6vw, 51px);
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.podziekowanie-karta p {
  margin: 22px auto 0;
  color: #667287;
  font-size: 16px;
  line-height: 1.75;
}

.podziekowanie-karta a {
  display: inline-flex;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #1659cf;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}

.formularz-progress {
  position: sticky;
  top: 92px;
  z-index: 20;
  margin: -4px 0 30px;
  padding: 15px 17px;
  border: 1px solid #dbe2ec;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(10px);
}

.formularz-progress-info {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.formularz-progress-info span {
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.formularz-progress-info strong {
  color: #1e3a8a;
  font-size: 13px;
  text-align: right;
}

.formularz-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.formularz-progress-track span {
  width: 20%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #f97316;
  transition: width 0.3s ease;
}

.adres-wyszukiwarka input {
  border-color: #aebbd0;
  background: #ffffff;
}

.adres-wyszukiwarka-status {
  display: block;
}

.adres-wyszukiwarka-status.poprawny {
  color: #15803d;
  font-weight: 600;
}

.adres-wyszukiwarka-status.blad {
  color: #dc2626;
  font-weight: 600;
}

.preferencje-naglowek {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.preferencje-naglowek p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}

.preferencje-licznik {
  min-width: 58px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.preferencje-lista {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.preferencja-element {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #edf0f5;
}

.preferencja-checkbox {
  min-height: 42px;
  display: grid;
  place-items: center;
}

.preferencja-checkbox input {
  width: 17px;
  height: 17px;
  accent-color: #1e3a8a;
  cursor: pointer;
}

.preferencja-checkbox input:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.preferencja-nazwa {
  min-height: 42px;
  padding: 8px 28px 8px 6px;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.preferencja-nazwa::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid #c7d2fe;
  border-radius: 50%;
  color: #1e3a8a;
  content: "i";
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-50%);
}

.preferencja-nazwa:focus-visible {
  border-radius: 7px;
  outline: 3px solid rgba(249, 115, 22, 0.22);
  outline-offset: 1px;
}

.preferencja-opis {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 24px;
  z-index: 30;
  margin: 0;
  padding: 11px 12px;
  display: none;
  border: 1px solid #dbe2ec;
  border-radius: 9px;
  background: #ffffff;
  color: #4b5563;
  font-size: 11px;
  line-height: 1.55;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .preferencja-element:hover .preferencja-opis,
  .preferencja-element:focus-within .preferencja-opis {
    display: block;
  }
}

.zgody-wycena {
  display: grid;
  gap: 13px;
}

.informacja-rodo {
  margin: 2px 0 0;
  padding: 13px 14px;
  border-left: 3px solid #1e3a8a;
  background: #f8fafc;
  color: #64748b;
  font-size: 10px;
  line-height: 1.65;
}

.informacja-rodo a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tylko-czytnik {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.polityka-strona {
  padding: 70px 20px 90px;
}

.polityka-kontener {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid #dbe2ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(30, 58, 138, 0.08);
}

.polityka-kontener h1 {
  margin: 0 0 12px;
  color: #1e3a8a;
  font-size: clamp(31px, 5vw, 46px);
  line-height: 1.15;
}

.polityka-kontener h2 {
  margin: 34px 0 12px;
  color: #1f2937;
  font-size: 20px;
}

.polityka-kontener p,
.polityka-kontener li {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
}

.polityka-kontener ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.polityka-data {
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .formularz-progress {
    top: 80px;
  }

  .preferencje-lista {
    grid-template-columns: 1fr;
  }

  .preferencja-opis {
    position: static;
    grid-column: 1 / -1;
    margin: 0 0 9px 24px;
    box-shadow: none;
  }

  .preferencja-element.opis-otwarty .preferencja-opis {
    display: block;
  }

  .polityka-strona {
    padding: 45px 15px 70px;
  }

  .polityka-kontener {
    padding: 27px 20px;
  }
}

@media (max-width: 480px) {
  .formularz-progress-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .formularz-progress-info strong {
    text-align: left;
  }
}

.miejscowosc-autocomplete {
  position: relative;
}

.miejscowosc-pole {
  position: relative;
}

.miejscowosc-podpowiedzi {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  z-index: 1200;
  max-height: 340px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.16);
}

.miejscowosc-podpowiedzi[hidden] {
  display: none;
}

.miejscowosc-opcja {
  width: 100%;
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #1f2937;
  text-align: left;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.miejscowosc-opcja:hover,
.miejscowosc-opcja.aktywna {
  background: #eef2ff;
  color: #1e3a8a;
}

.miejscowosc-opcja:focus-visible {
  outline: 3px solid rgba(30, 58, 138, 0.18);
  outline-offset: 1px;
}

.miejscowosc-opcja-nazwa {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.miejscowosc-opcja-kontekst {
  display: block;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.35;
}

.miejscowosc-brak {
  padding: 13px 12px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.55;
}

.miejscowosc-status-poprawny {
  color: #15803d !important;
  font-weight: 600;
}

.miejscowosc-status-blad {
  color: #dc2626 !important;
  font-weight: 600;
}

@media (max-width: 600px) {
  .miejscowosc-podpowiedzi {
    max-height: 290px;
  }

  .miejscowosc-opcja {
    min-height: 56px;
  }
}