@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f7f7f5;
  color: #20242a;
}

section {
  min-height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

label {
  display: block;
}

.row {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.no-scroll {
  overflow: hidden;
}

/* =========================================================
   BASIC UI
========================================================= */
.tab {
  cursor: pointer;
}

.form-button {
  width: 100%;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.toast {
  position: fixed;
  top: 20px;
  right: -300px;
  z-index: 9999;
  padding: 12px 20px;
  color: #ffffff;
  background-color: #4caf50;
  border-radius: 10px;
  transition: right 0.4s ease;
}

.toast.show {
  right: 20px;
}

#toTopBtn {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 100;
  padding: 1rem 1.25rem;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.452);
  border: 0;
  border-radius: 25px;
  outline: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.15s ease-out;
}

#toTopBtn:hover {
  background-color: rgba(0, 0, 0, 0.788);
}

/* =========================================================
   HEADER
========================================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  padding: 0.85rem 2rem;
  color: #1f2328;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  opacity: 1;
  transform: none;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo .logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #1f2328;
  text-decoration: none;
}

.header-phone i {
  color: #b94b34;
  font-size: 1.25rem;
}

.header-phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-phone strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-phone small {
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.8rem;
}

.nav-right {
  padding: 0.72rem 1rem;
  color: #ffffff;
  background: #b94b34;
  border: 0;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s ease;
}

/* =========================================================
   ROUTE BACKGROUND
========================================================= */
.route-background {
  position: fixed;
  inset: -10vh -5vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  transform: translate3d(0, var(--route-parallax-y, 0px), 0);
  will-change: transform;
}

.route-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(185, 75, 52, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 75, 52, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.2;
}

.route-background::after {
  display: none;
}

.route-background svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 110%;
  height: 110%;
  transform: translate(-5%, -5%);
}

.route-line {
  fill: none;
  stroke: #b94b34;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  opacity: 0.14;
  animation: routeDash 28s linear infinite;
}

.route-line-two {
  opacity: 0.1;
  animation-duration: 34s;
}

.route-line-three {
  opacity: 0.08;
  animation-duration: 40s;
  animation-direction: reverse;
}

.route-pin {
  fill: #b94b34;
  opacity: 0.09;
  animation: routePinFloat 5s ease-in-out infinite;
}

.route-pin circle {
  fill: #f7f7f5;
  opacity: 0.9;
}

.route-pin-two {
  animation-delay: 1.4s;
}

.route-vehicle,
.route-vehicle-car,
.route-vehicle-three {
  opacity: var(--route-vehicle-fade, 1);
  transform-box: fill-box;
  transform-origin: center;
}

.route-vehicle image {
  display: block;
  pointer-events: none;
}

.route-vehicle-face-fix {
  transform-box: fill-box;
  transform-origin: center;
}

.route-vehicle-cover {
  fill: #f7f7f5;
  opacity: 1;
}

.route-vehicle-cover-van,
.route-vehicle-cover-car {
  pointer-events: none;
}

@keyframes routeDash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -220;
  }
}

@keyframes routePinFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =========================================================
   SHARED SECTION LAYERS
========================================================= */
.landing-hero,
.about-modern,
.services-modern,
.reviews-modern,
#cenik.price-modern,
.contact-map-modern,
.main-footer {
  position: relative;
  z-index: 2;
}

.landing-hero .hero-wrapper,
.landing-hero .hero-benefits,
.about-modern-card,
.services-modern-inner,
.reviews-modern-inner,
.price-modern-inner,
.contact-map-inner,
.footer-modern,
.footer-bottom-modern {
  position: relative;
  z-index: 3;
}

/* =========================================================
   HERO
========================================================= */
.landing-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 2rem 3rem;
  overflow: hidden;
}

.landing-hero .hero-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 4rem;
  width: 100%;
  height: auto;
  min-height: 520px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-title {
  margin: 0;
  color: #20242a;
  font-size: 4rem;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
  filter: none;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 720px;
  margin: 1.8rem 0 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 64px;
  padding: 1rem 1.65rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.hero-primary {
  color: #ffffff;
  background: #b94b34;
  box-shadow: none;
}

.hero-secondary {
  color: #20242a;
  background: transparent;
  border: 1px solid rgba(31, 35, 40, 0.18);
  box-shadow: none;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
  color: #5f6672;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #b94b34;
  background: transparent;
  border-radius: 0;
  font-size: 1.25rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  backdrop-filter: none;
}

.hero-benefit-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  min-height: 92px;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(31, 35, 40, 0.08);
}

.hero-benefit-card:last-child {
  border-right: none;
}

.hero-benefit-card > i {
  flex: 0 0 auto;
  color: #b94b34;
  font-size: 1.75rem;
}

.hero-benefit-card h3 {
  margin: 0 0 0.35rem;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-benefit-card p {
  margin: 0;
  color: #5f6672;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

/* =========================================================
   ABOUT
========================================================= */
.about-modern {
  min-height: auto;
  padding: 3.75rem 2rem;
  background: transparent;
}

.about-modern-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.07);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.about-modern-copy {
  align-self: center;
  max-width: 640px;
}

.about-eyebrow {
  margin: 0;
  color: #b94b34;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-line {
  display: block;
  width: 64px;
  height: 3px;
  margin: 1rem 0 2rem;
  background: #b94b34;
  border-radius: 999px;
}

.about-modern-copy h2,
.services-modern-copy h2,
.reviews-modern-head h2,
.contact-map-head h2 {
  max-width: 820px;
  margin: 0;
  color: #20242a;
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-lead,
.about-text-modern,
.services-lead,
.reviews-lead,
.contact-map-head > p {
  max-width: 720px;
  color: #3f4652;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.about-lead,
.about-text-modern {
  margin: 0;
}

.about-lead {
  margin-top: 1.35rem;
}

.about-text-modern {
  margin-top: 1rem;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.7rem;
  border-top: 1px solid rgba(31, 35, 40, 0.1);
  border-bottom: 1px solid rgba(31, 35, 40, 0.1);
}

.about-metric {
  min-width: 0;
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(31, 35, 40, 0.1);
}

.about-metric:last-child {
  border-right: none;
}

.about-metric i {
  display: block;
  margin-bottom: 0.55rem;
  color: #b94b34;
  font-size: 1.5rem;
}

.about-metric strong {
  display: block;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.about-metric span {
  display: block;
  margin-top: 0.25rem;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}

.about-modern-media {
  align-self: center;
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  height: 480px;
  min-height: 0;
}

.about-photo {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.about-photo-large,
.about-photo-small {
  height: 100%;
  min-height: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.about-photo-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  max-width: min(310px, calc(100% - 3rem));
  padding: 0.8rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.about-photo-label i {
  color: #b94b34;
  font-size: 1.5rem;
}

.about-photo-label strong {
  display: block;
  color: #20242a;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-photo-label span {
  display: block;
  margin-top: 0.25rem;
  color: #5f6672;
  font-size: 0.8rem;
}

/* =========================================================
   SERVICES
========================================================= */
.services-modern {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background: #b94b34;
}

.services-modern::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.services-modern::after {
  content: "";
  position: absolute;
  left: -9rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.services-modern-panel {
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.services-modern-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.8rem;
}

.services-modern-copy {
  position: static;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  padding-top: 0;
}

.services-modern-panel .services-modern-copy h2 {
  color: #ffffff;
}

.services-lead {
  max-width: 720px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.services-modern-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.service-row-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: auto;
  padding: 1.15rem;
  color: #20242a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.service-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b94b34;
}

.service-row-icon i {
  color: #b94b34;
  font-size: 1.25rem;
}

.service-row-text {
  min-width: 0;
}

.service-row-text h3 {
  margin: 0;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.service-row-text p {
  margin: 0.3rem 0 0;
  color: #5f6672;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

.service-row-arrow {
  color: #b94b34;
  font-size: 1.5rem;
  line-height: 1;
  transition: 0.25s ease;
}

.services-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.25rem;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.services-custom-cta h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.services-custom-cta p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

.services-custom-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  color: #b94b34;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

/* =========================================================
   REVIEWS
========================================================= */
.reviews-modern {
  position: relative;
  min-height: auto;
  padding: 6rem 2rem;
  background: #f7f7f5;
  overflow: hidden;
}

.reviews-modern-inner {
  position: relative;
  z-index: 2;
}

.reviews-modern-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.reviews-lead {
  max-width: 720px;
  margin: 0;
}

.reviews-quote-bg {
  display: none;
}

.reviews-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.reviews-modern-card {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 1.45rem 1.55rem;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.07);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.reviews-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.reviews-quote {
  display: inline-flex;
  color: #b94b34;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 0.8;
}

.reviews-avatar {
  display: none;
}

.reviews-modern-card h3 {
  margin: 0.75rem 0 0;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.reviews-stars {
  margin-top: 0.5rem;
  color: #b94b34;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.reviews-modern-card p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}

/* =========================================================
   PRICE
========================================================= */
#cenik.price-modern {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
  background: #ffffff;
}

#cenik.price-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(185, 75, 52, 0.055), transparent 24rem),
    radial-gradient(circle at 82% 75%, rgba(185, 75, 52, 0.04), transparent 26rem);
  pointer-events: none;
}

.price-modern-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.price-offer-copy {
  min-width: 0;
  padding-right: 3.5rem;
  border-right: 1px solid rgba(31, 35, 40, 0.14);
}

.price-offer-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #20242a;
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-offer-copy h2 span {
  display: block;
}

.price-offer-copy p {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: #3f4652;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.price-offer-copy strong {
  display: block;
  max-width: 680px;
  margin-top: 1.8rem;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
}

.price-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.price-offer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 1rem 1.55rem;
  color: #ffffff;
  background: #b94b34;
  border: 1px solid #b94b34;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-offer-actions a:nth-child(2) {
  color: #b94b34;
  background: transparent;
}

.price-factors {
  min-width: 0;
}

.price-factors h3 {
  margin: 0 0 1.2rem;
  color: #20242a;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
}

.price-factor-clean {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(31, 35, 40, 0.12);
}

.price-factor-clean:last-child {
  border-bottom: 0;
}

.price-factor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #b94b34;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.price-factor-icon i {
  font-size: 1.25rem;
}

.price-factor-clean h4 {
  margin: 0;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.price-factor-clean p {
  max-width: 520px;
  margin: 0.45rem 0 0;
  color: #3f4652;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

/* =========================================================
   CONTACT / FORM / MAP
========================================================= */
.contact-map-modern {
  min-height: auto;
  padding: 3.75rem 2rem;
  background: transparent;
}

.contact-map-head {
  margin-bottom: 2.5rem;
}

.contact-map-head > p {
  margin: 1rem 0 0;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
  gap: 2rem;
  align-items: start;
}

.contact-form-card,
.contact-map-card {
  min-width: 0;
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.07);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.contact-info-grid {
  display: none;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.65rem 0;
  color: #20242a;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
}

.contact-info-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #b94b34;
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
}

.contact-info-card span {
  min-width: 0;
}

.contact-info-card small {
  display: block;
  margin-bottom: 0.25rem;
  color: #20242a;
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-info-card strong {
  display: block;
  color: #3f4652;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-map-modern .tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem;
  background: #f7f7f5;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: 10px;
}

.contact-map-modern .tab {
  max-width: none;
  width: 100%;
  padding: 0.8rem 0.9rem;
  color: #4b5563;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
}

.contact-map-modern .tab::before,
.contact-map-modern .tab::after {
  display: none;
}

.contact-map-modern .tab.active {
  color: #ffffff;
  background: #b94b34;
  border-color: transparent;
  box-shadow: none;
}

.contact-map-modern .form-container {
  display: block;
}

.contact-map-modern #form1,
.contact-map-modern #form2 {
  max-width: none;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
}

.contact-map-modern #form1 {
  display: grid;
}

.contact-map-modern #form2 .form-group:nth-of-type(7),
.contact-map-modern #form2 .form-group:nth-of-type(9),
.contact-map-modern #form2 .g-recaptcha,
.contact-map-modern #form2 .form-button,
.contact-map-modern #form1 .form-group:nth-of-type(5),
.contact-map-modern #form1 .g-recaptcha,
.contact-map-modern #form1 .form-button {
  grid-column: 1 / -1;
}

.contact-map-modern .input-wrapper,
.contact-map-modern input,
.contact-map-modern select,
.contact-map-modern textarea {
  width: 100%;
}

.contact-map-modern .form-group {
  margin-bottom: 0.8rem;
}

.contact-map-modern label {
  margin-bottom: 0.4rem;
  color: #20242a;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-map-modern input,
.contact-map-modern select,
.contact-map-modern textarea {
  min-height: 42px;
  padding: 0.75rem 0.9rem;
  color: #20242a;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.14);
  border-radius: 7px;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-map-modern textarea {
  min-height: 82px;
}

.contact-map-modern input:focus,
.contact-map-modern select:focus,
.contact-map-modern textarea:focus {
  transform: none;
  border-color: rgba(185, 75, 52, 0.65);
  box-shadow: 0 0 0 3px rgba(185, 75, 52, 0.1);
}

.contact-map-modern .focus-border {
  display: none;
}

.contact-map-modern .form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  margin-top: 0.4rem;
  background: #b94b34;
  border-radius: 7px;
  box-shadow: none;
}

.contact-map-modern .region-sections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0;
  margin-bottom: 1rem;
}

.contact-map-modern .region-sections button {
  padding: 0.65rem 0.75rem;
  color: #b94b34;
  background: transparent;
  border: 1px solid rgba(185, 75, 52, 0.32);
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transform: none;
  transition: 0.2s ease;
}

.contact-map-modern .region-sections button::before,
.contact-map-modern .region-sections button::after {
  display: none;
}

.contact-map-modern .region-sections button.active {
  color: #ffffff;
  background: #b94b34;
  border-color: #b94b34;
}

.contact-map-text {
  margin: 0 0 1rem;
  color: #3f4652;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

.contact-map-modern .map-wrap-only {
  padding-bottom: 0;
}

.contact-map-modern #map-pick {
  width: 100%;
  max-width: none;
  height: 380px !important;
  margin: 0;
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: 10px;
  filter: none;
  box-shadow: none;
}

.contact-mini-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 35, 40, 0.08);
}

.contact-mini-list a,
.contact-mini-list div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}

.contact-mini-list i {
  color: #b94b34;
  font-size: 0.9rem;
}

.contact-mini-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* =========================================================
   OVERLAY MENU
========================================================= */
.overlay-menu {
  position: fixed;
  inset: 0;
  top: -110%;
  z-index: 999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  color: #ffffff;
  background: #1f2636;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: top 0.45s ease;
}

.overlay-menu-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
}

.overlay-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.overlay-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
}

.overlay-brand-text {
  display: grid;
  gap: 0.15rem;
  line-height: 0.95;
  text-align: left;
}

.overlay-brand-text span {
  display: block;
}

.overlay-brand img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.overlay-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: auto;
  max-width: none;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.overlay-close span {
  color: #b94b34;
  font-size: 1.5rem;
  line-height: 1;
}

.overlay-nav {
  display: grid;
  align-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 3rem 0;
}

.overlay-nav a {
  position: relative;
  display: block;
  padding: 1rem 4rem 1rem 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.overlay-nav a:last-child {
  border-bottom: none;
}

.overlay-nav a:hover,
.overlay-nav a:focus-visible {
  padding-left: 1.25rem;
  color: #ffffff;
}

.overlay-nav a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  color: #b94b34;
  font-size: 2.5rem;
  opacity: 0;
  transform: translate(-12px, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.overlay-nav a:hover::after,
.overlay-nav a:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.overlay-menu-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-contact-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.overlay-menu-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.overlay-menu-bottom i {
  color: #b94b34;
}

.overlay-menu-bottom p {
  max-width: 420px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: right;
}

/* =========================================================
   FOOTER
========================================================= */
.main-footer {
  position: relative;
  min-height: auto;
  margin-top: 0;
  padding: 4.5rem 2rem 0;
  color: #ffffff;
  background: #1f2636;
  overflow: hidden;
}

.footer-modern {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.footer-brand,
.footer-column {
  min-width: 0;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column:last-child {
  padding-right: 0;
  border-right: none;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-mark img {
  display: block;
  width: auto;
  height: 74px;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-brand p {
  max-width: 360px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.footer-badge i {
  color: #b94b34;
}

.footer-column h4 {
  margin: 0 0 1.2rem;
  color: #b94b34;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-column ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0;
}

.footer-column li a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 1rem;
  transition: 0.25s ease;
}

.footer-column li a::before {
  content: "›";
  color: #b94b34;
  font-size: 1.5rem;
  line-height: 1;
}

.footer-contact-modern {
  display: grid;
  align-content: start;
  gap: 1.35rem;
}

.footer-contact-modern a,
.footer-contact-modern div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-modern i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #b94b34;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1rem;
}

.footer-contact-modern span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-social-modern > a {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-social-modern > a i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 1.1rem;
  color: #ffffff;
  background: #b94b34;
  border-radius: 999px;
  font-size: 1.25rem;
  transition:
    padding 0.25s ease,
    transform 0.25s ease;
}

.footer-social-modern > a span {
  color: rgba(255, 255, 255, 0.88);
}

.footer-company {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-company p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-company strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-bottom-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-modern p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-divider {
  color: #b94b34;
  font-weight: 700;
}

/* =========================================================
   FORM STATUS
========================================================= */
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

/* =========================================================
   COOKIE BAR
========================================================= */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 950;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  width: min(920px, calc(100% - 2rem));
  padding: 1rem 1rem 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, calc(100% + 2rem), 0);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.cookie-bar.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.cookie-bar-text {
  min-width: 0;
}

.cookie-bar-text strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #20242a;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.cookie-bar-text p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cookie-btn {
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.cookie-btn-primary {
  color: #ffffff;
  background: #b94b34;
  border: 1px solid #b94b34;
}

.cookie-btn-muted {
  color: #20242a;
  background: transparent;
  border: 1px solid rgba(31, 35, 40, 0.18);
}

/* =========================================================
   MOTION / REVEAL
========================================================= */
.landing-hero .hero-copy > *,
.landing-hero .hero-visual,
.landing-hero .hero-benefit-card {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.landing-hero .hero-load-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-load-item.reveal-item {
  transform: translate3d(0, 28px, 0);
  transition-duration: 0.95s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual.reveal-item,
.about-photo.reveal-item {
  transform: translate3d(0, 18px, 0) scale(0.985);
}

.hero-visual.reveal-item.is-visible,
.about-photo.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.contact-form-card.reveal-item {
  transform: translate3d(-14px, 0, 0);
}

.contact-map-card.reveal-item {
  transform: translate3d(14px, 0, 0);
}

.contact-form-card.reveal-item.is-visible,
.contact-map-card.reveal-item.is-visible {
  transform: translate3d(0, 0, 0);
}

/* =========================================================
   INTERACTIONS
========================================================= */
@media (hover: hover) and (pointer: fine) {
  .hero-primary,
  .hero-secondary,
  .price-offer-actions a,
  .services-custom-cta a,
  .contact-mini-list a,
  .footer-column li a,
  .footer-contact-modern a,
  .footer-social-modern > a,
  .service-row-card,
  .reviews-modern-card,
  .price-factor-clean {
    transition:
      transform 0.2s ease,
      opacity 0.2s ease,
      border-color 0.2s ease;
  }

  .hero-primary:hover,
  .hero-secondary:hover,
  .price-offer-actions a:hover,
  .services-custom-cta a:hover,
  .contact-mini-list a:hover,
  .footer-column li a:hover,
  .footer-contact-modern a:hover,
  .footer-social-modern > a:hover,
  .cookie-btn:hover {
    transform: translateX(1px);
  }

  .service-row-card:hover,
  .reviews-modern-card:hover,
  .price-factor-clean:hover {
    transform: translateY(-1px);
  }

  .service-row-card:hover,
  .reviews-modern-card:hover,
  .contact-form-card:hover,
  .contact-map-card:hover {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .hero-primary:hover,
  .hero-secondary:hover,
  .price-offer-actions a:hover,
  .services-custom-cta a:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  }

  .footer-social-modern > a:hover i {
    padding: 0 1.35rem;
  }
}

/* =========================================================
   RESPONSIVE - 1400PX
========================================================= */
@media only screen and (max-width: 1400px) {
  .landing-hero .hero-wrapper {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
    min-height: auto;
  }

  .hero-copy {
    display: contents;
  }

  .hero-title {
    order: 1;
    max-width: 880px;
  }

  .hero-text {
    order: 2;
    max-width: 760px;
    margin-top: 0;
  }

  .hero-visual {
    order: 3;
    width: 100%;
    height: 360px;
    min-height: 0;
    margin-top: 0.25rem;
  }

  .hero-visual img {
    height: 100%;
    min-height: 0;
  }

  .hero-actions {
    order: 4;
    margin-top: 0.4rem;
  }

  .hero-note {
    order: 5;
    margin-top: 0;
  }
}

/* =========================================================
   RESPONSIVE - 1180PX
========================================================= */
@media only screen and (max-width: 1180px) {
  .contact-map-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   RESPONSIVE - 1100PX
========================================================= */
@media only screen and (max-width: 1100px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-title span {
    white-space: normal;
  }

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

  .hero-benefit-card:nth-child(2) {
    border-right: none;
  }

  .hero-benefit-card:nth-child(1),
  .hero-benefit-card:nth-child(2) {
    border-bottom: 1px solid rgba(31, 35, 40, 0.1);
  }

  .about-modern-copy h2,
  .services-modern-copy h2,
  .reviews-modern-head h2,
  .contact-map-head h2 {
    font-size: 2.5rem;
  }

  .about-modern-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .about-modern-copy {
    max-width: 780px;
  }

  .about-modern-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .about-photo-large,
  .about-photo-small {
    height: 220px;
  }

  .services-modern-copy {
    position: static;
    max-width: 760px;
  }

  .services-modern-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-modern-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .price-offer-copy {
    padding-right: 0;
    padding-bottom: 3rem;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 35, 40, 0.14);
  }

  .price-offer-copy h2 {
    font-size: 2.5rem;
  }

  .overlay-menu-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .overlay-menu-bottom p {
    text-align: left;
  }

  .footer-modern {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-column {
    padding-right: 0;
    border-right: none;
  }
}

/* =========================================================
   RESPONSIVE - 900PX
========================================================= */
@media only screen and (max-width: 900px) {
  .reviews-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   RESPONSIVE - 800PX
========================================================= */
@media only screen and (max-width: 800px) {
  .landing-hero,
  .about-modern,
  .services-modern,
  .reviews-modern,
  #cenik.price-modern,
  .contact-map-modern,
  .main-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .landing-hero {
    text-align: center;
  }

  .hero-title,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    justify-content: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-note span {
    flex: 0 0 auto;
  }

  .hero-visual {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefit-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
  }

  .hero-benefit-card > i {
    font-size: 1.6rem;
  }

  .hero-benefit-card h3 {
    margin-bottom: 0.25rem;
  }

  .about-modern-card {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-modern-copy {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-modern-copy h2,
  .about-lead,
  .about-text-modern {
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-modern-head {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .reviews-modern-head h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .reviews-lead {
    margin-top: 0.75rem;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .price-offer-copy h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .contact-map-head h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .main-footer {
    text-align: center;
  }

  .footer-modern {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }

  .footer-brand,
  .footer-column {
    width: 100%;
    max-width: 520px;
    padding-right: 0;
    border-right: none;
    text-align: center;
  }

  .footer-logo-mark {
    justify-content: center;
    width: 100%;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column ul {
    justify-items: center;
  }

  .footer-column li a {
    justify-content: center;
  }

  .footer-contact-modern {
    justify-items: center;
  }

  .footer-contact-modern a,
  .footer-contact-modern div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
  }

  .footer-social-modern > a {
    justify-content: center;
    width: 100%;
  }

  .footer-company {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom-modern {
    align-items: center;
    text-align: center;
  }

  .footer-bottom-modern p {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   RESPONSIVE - 700PX
========================================================= */
@media only screen and (max-width: 700px) {
  .main-header {
    padding: 0.75rem 1rem;
  }

  .header-logo .logo {
    height: 42px;
  }

  .header-phone {
    display: none;
  }

  .landing-hero {
    min-height: 100vh;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 260px;
    min-height: 0;
    border-radius: 18px;
  }

  .hero-visual img {
    height: 100%;
    min-height: 0;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.25rem;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    min-height: 52px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }

  .hero-benefit-card {
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(31, 35, 40, 0.1);
  }

  .hero-benefit-card:last-child {
    border-bottom: none;
  }

  .services-modern {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #cenik.price-modern {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .about-modern-copy h2,
  .services-modern-copy h2,
  .reviews-modern-head h2,
  .contact-map-head h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .about-modern-card {
    padding: 1rem;
  }

  .contact-form-card,
  .contact-map-card {
    padding: 1.15rem;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-metric {
    border-right: none;
    border-bottom: 1px solid rgba(31, 35, 40, 0.1);
  }

  .about-metric:last-child {
    border-bottom: none;
  }

  .about-modern-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .about-photo-large,
  .about-photo-small {
    height: 190px;
  }

  .about-photo-label {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .services-modern-list,
  .reviews-modern-grid {
    grid-template-columns: 1fr;
  }

  .service-row-card {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 1rem;
  }

  .service-row-text h3 {
    font-size: 1rem;
  }

  .service-row-text p {
    font-size: 0.9rem;
  }

  .service-row-arrow {
    font-size: 1.25rem;
  }

  .services-custom-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .services-custom-cta h3 {
    font-size: 1.25rem;
  }

  .services-custom-cta a {
    width: 100%;
  }

  .price-modern-inner {
    gap: 2.5rem;
  }

  .price-offer-copy {
    padding-bottom: 2.5rem;
  }

  .price-offer-copy h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .price-offer-copy p,
  .price-offer-copy strong {
    font-size: 1rem;
  }

  .price-offer-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.75rem;
  }

  .price-offer-actions a {
    width: 100%;
    min-height: 52px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-transform: none;
  }

  .price-factor-clean {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1.15rem 0;
  }

  .price-factor-icon {
    width: 30px;
    height: 30px;
  }

  .price-factor-icon i {
    font-size: 1.25rem;
  }

  .price-factor-clean h4 {
    font-size: 1rem;
  }

  .price-factor-clean p {
    font-size: 0.9rem;
  }

  .contact-map-modern .tabs {
    grid-template-columns: 1fr;
  }

  .contact-map-modern .region-sections {
    display: none;
  }

  .contact-map-modern #form1,
  .contact-map-modern #form2 {
    grid-template-columns: 1fr;
  }

  .contact-map-modern #map-pick {
    height: 300px !important;
  }

  .contact-map-modern .form-button {
    min-height: 46px;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .contact-form-card.reveal-item,
  .contact-map-card.reveal-item {
    transform: translate3d(0, 14px, 0);
  }

  .contact-form-card.reveal-item.is-visible,
  .contact-map-card.reveal-item.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .overlay-menu-inner {
    padding: 1.2rem;
  }

  .overlay-brand img {
    height: 44px;
  }

  .overlay-brand span {
    display: none;
  }

  .overlay-nav a {
    padding-right: 3rem;
    font-size: 2.75rem;
  }

  .overlay-menu-bottom {
    gap: 1rem;
  }

  .overlay-contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .main-footer {
    padding-top: 4rem;
    padding-bottom: 0;
  }

  .footer-logo-mark img {
    height: 58px;
  }

  .footer-modern {
    padding-bottom: 2.5rem;
  }

  .route-background,
  .route-vehicle {
    display: none;
  }

  .cookie-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }

  .cookie-bar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* =========================================================
   RESPONSIVE - 600PX
========================================================= */
@media only screen and (max-width: 600px) {
  .about-metrics {
    display: none;
  }

  .about-modern-card {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

/* =========================================================
   RESPONSIVE - 500PX
========================================================= */
@media only screen and (max-width: 500px) {
  .hero-note {
    display: none;
  }
}

/* =========================================================
   RESPONSIVE - 420PX
========================================================= */
@media only screen and (max-width: 420px) {
  .hero-primary,
  .hero-secondary,
  .price-offer-actions a {
    min-height: 48px;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible,
  .hero-visual.reveal-item,
  .hero-visual.reveal-item.is-visible,
  .about-photo.reveal-item,
  .about-photo.reveal-item.is-visible,
  .contact-form-card.reveal-item,
  .contact-form-card.reveal-item.is-visible,
  .contact-map-card.reveal-item,
  .contact-map-card.reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
