/* =========================
   RESET / BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: #F7F5F0;
  color: #1C2B22;
}

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

a {
  color: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {
  --dark: #1C2B22;
  --green: #1D9E75;
  --light: #F7F5F0;
  --dark-green: #043a17;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  min-height: 799px;

  background: #F7F5F0;
  color: var(--dark);
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 1;

  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 625px;

  background: linear-gradient(
    to bottom,
    rgba(247, 245, 240, 0) 0%,
    rgba(247, 245, 240, 0.2) 45%,
    rgba(247, 245, 240, 0.72) 100%
  );

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 100%
  );

  pointer-events: none;
  z-index: 2;
}

.hero-title,
.hero-line,
.hero-text,
.hero-features {
  position: relative;
  z-index: 4;
}

.hero-buttons {
  position: relative;
  z-index: 6;
}



.hero-inner {
  width: 1340px;
  min-height: 799px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 50px;
  position: relative;
}

.hero-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 72px;
}



/* =========================
   NAVBAR
========================= */

.hero-nav {
  width: 1340px;
  height: 72px;

  padding-inline: 30px;

  display: grid;
  grid-template-columns: 206px 1fr 252px;
  align-items: center;
  column-gap: 4px;

  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1000;

  transform: translateX(-50%);
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
  }

  .hero-nav.is-hidden {
  transform: translate(-50%, calc(-100% - 30px));
  opacity: 0;
  pointer-events: none;
}

  .hero-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;

  width: calc(100vw - 100px);

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 33px;

  background: rgba(247, 245, 240, 0.22);

  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);

  box-shadow:
    0 8px 32px rgba(31, 88, 135, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);

  opacity: 0;
  transform: translateX(-50%);
  pointer-events: none;

  transition:
    opacity 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}


.hero-nav.is-scrolled::before {
  opacity: 1;
}

.nav-logo-link {
  width: 206px;
  height: 52px;
  display: block;
  text-decoration: none;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-35px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s ease;
}

.hero-nav.is-scrolled .nav-logo-link {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


.nav-logo {
  width: 206px;
  height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-links a {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #065F46;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a {
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.nav-links a:hover {
  color: var(--green);
}



.glass-btn {
  min-width: 210px;
  height: 46px;
  padding: 0 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(7, 71, 0, 0.213);
  border-radius: 999px;

  background: rgba(22, 134, 80, 0.704);

  backdrop-filter: blur(4px) saturate(108%);
  -webkit-backdrop-filter: blur(4px) saturate(108%);

  box-shadow:
    0 8px 32px rgba(9, 41, 29, 0.2),
      inset 0 4px 20px rgba(255, 255, 255, 0.3);
  

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #F7F5F0;
  text-decoration: none;

  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    transform 0.5s ease,
    color 0.5s ease;
}

.glass-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 999px;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 0.482),
              inset 0px -9px 0px -8px rgba(255, 255, 255, 0.437);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

.glass-btn:active {
  transform: scale(0.985);

  box-shadow:
    3px 3px 10px rgba(255, 255, 255, 0.16),
    -4px -4px 12px rgba(13, 77, 58, 0.16);
}


.glass-btn span {
  display: block;
}

.glass-btn:hover {
  background: rgba(10, 105, 75, 0.926);
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
  margin-left: 88px;
  padding-top: 5px;
  position: relative;
}

.hero-title {
  margin: 25px 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.25;

  color: #4A4A46;
}

.hero-title span,
.hero-title em {
  display: block;
}

.hero-title em {
  font-style: italic;
  color: var(--green);
}

.hero-logo {
  position: relative;
  z-index: 1;

  width: 740px;
  height: 120px;
  object-fit: contain;

  margin: 65px auto;

  transform: translateX(-60px);

  opacity: 1;
  filter:
    brightness(1)
    contrast(150.75)
    saturate(120.2)
    drop-shadow(-9px 13px 4px rgba(14, 26, 1, 0.628));

}


.hero-drips {
  position: absolute;
  inset: 0;
  z-index: 5;

  overflow: hidden;
  pointer-events: none;
}


/*pojedyncza kropla*/
/* =========================
   HERO — KROPLE / NOWA WERSJA
========================= */

.hero-drip {
  position: absolute;
  top: -160px;
  left: var(--drop-left);

  width: 2px;
  height: var(--trail-height);

  pointer-events: none;
  opacity: 0;

  /* ślad kropli */
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 52%,
      rgba(255, 255, 255, 0.34) 78%,
      rgba(255, 255, 255, 0.05) 100%
    );

  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.18))
    drop-shadow(0 1px 2px rgba(30, 40, 32, 0.10));

  animation:
    hero-drop-fall var(--drop-duration)
    cubic-bezier(0.42, 0.08, 0.28, 1)
    var(--drop-delay)
    infinite;

  will-change: transform, opacity;
}

.hero-drip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);

  width: var(--blob-width);
  height: var(--blob-height);

  /* spłaszczona kropla / kula */
  border-radius: 48% 48% 52% 52% / 42% 42% 58% 58%;

  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.62) 10%,
      rgba(255, 255, 255, 0.18) 24%,
      rgba(210, 235, 230, 0.22) 42%,
      rgba(130, 160, 145, 0.14) 70%,
      rgba(255, 255, 255, 0.05) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.38),
    inset -1px -1px 2px rgba(40, 55, 45, 0.10),
    0 1px 2px rgba(40, 55, 45, 0.10),
    0 0 8px rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(0.6px);
  -webkit-backdrop-filter: blur(0.6px);
}

.hero-drip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%) rotate(-8deg);

  width: calc(var(--blob-width) * 0.26);
  height: calc(var(--blob-height) * 0.52);

  border-radius: 999px;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.42) 38%,
      rgba(255, 255, 255, 0.08) 100%
    );

  opacity: 0.9;
  filter: blur(0.4px);
}

@keyframes hero-drop-fall {
  0% {
    transform: translate3d(0, -120px, 0);
    opacity: 0;
  }

  8% {
    opacity: 0;
  }

  14% {
    opacity: 0.72;
  }

  32% {
    transform: translate3d(1px, 20vh, 0);
    opacity: 0.76;
  }

  56% {
    transform: translate3d(-1px, 42vh, 0);
    opacity: 0.72;
  }

  78% {
    transform: translate3d(1px, 68vh, 0);
    opacity: 0.58;
  }

  92% {
    opacity: 0.26;
  }

  100% {
    transform: translate3d(0, 108vh, 0);
    opacity: 0;
  }
}

.hero-drip-1 {
  --drop-left: 18%;
  --trail-height: 78px;
  --blob-width: 14px;
  --blob-height: 11px;
  --drop-duration: 24s;
  --drop-delay: -4s;
}

.hero-drip-2 {
  --drop-left: 36%;
  --trail-height: 92px;
  --blob-width: 16px;
  --blob-height: 12px;
  --drop-duration: 29s;
  --drop-delay: -13s;
}

.hero-drip-3 {
  --drop-left: 57%;
  --trail-height: 72px;
  --blob-width: 13px;
  --blob-height: 10px;
  --drop-duration: 26s;
  --drop-delay: -8s;
}

.hero-drip-4 {
  --drop-left: 74%;
  --trail-height: 88px;
  --blob-width: 15px;
  --blob-height: 11px;
  --drop-duration: 31s;
  --drop-delay: -17s;
}

.hero-drip-5 {
  --drop-left: 88%;
  --trail-height: 80px;
  --blob-width: 14px;
  --blob-height: 10px;
  --drop-duration: 27s;
  --drop-delay: -2s;
}


.hero-line {
  width: 180px;
  height: 1px;

  margin-top: 0;
  margin-bottom: 15px;

  background: var(--green);
}

.hero-text {
  width: 650px;
  min-height: 120px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;

  color: var(--dark);
}

.hero-text strong {
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 55px;

  margin-top: 30px;
}



.hero-btn {
  min-width: 210px;
  height: 50px;
  padding: 0 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(7, 71, 0, 0.399);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0);

  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);

  box-shadow:
    0 8px 32px rgba(31, 88, 135, 0.2),
      inset 0 4px 20px rgba(255, 255, 255, 0.3);

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: #043a17;
  text-decoration: none;

  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    transform 0.5s ease,
    color 0.5s ease;
}

.hero-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 999px;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
              inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(10px 4px 6px black) brightness(115%);
}

.hero-btn:hover {
  background: rgba(104, 157, 131, 0.516);
}

.hero-btn:active {
  transform: scale(0.985);

  box-shadow:
    3px 3px 10px rgba(255, 255, 255, 0.14),
    -4px -4px 12px rgba(28, 74, 55, 0.13);
}

.glass-btn,
.hero-btn {
  position: relative;
  isolation: isolate;
}


/* =========================
   FEATURES
========================= */

.hero-features {
  width: 1190px;
  height: 73px;

  margin: 70px 0 40px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 45px;

  align-self: flex-start;

  align-items: center;
}

.feature-item {
  height: 73px;

  display: grid;
  grid-template-columns: 73px 1fr;
  align-items: center;
  column-gap: 14px;
}

.feature-icon {
  width: 73px;
  height: 73px;
  object-fit: contain;
}

.feature-content {
  color: var(--dark);
}

.feature-title {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;

  color: var(--dark);
}

.feature-description {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.25;

  color: var(--dark);
}





/* =========================
   OFFER SECTION
========================= */

.offer-section {
  width: 100%;
  min-height: 1280px;
  background: #F7F5F0;
  overflow: hidden;
  color: #4A4A46;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}


.offer-section::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 0;

  background: url("assets/offer-bg.webp") center / cover no-repeat;

  opacity: 0.58;
  transform: scale(1.03);

  animation: offerTextureBreath 18s ease-in-out infinite;
  pointer-events: none;
}


@keyframes offerTextureBreath {
  0%,
  100% {
    transform: scale(1.03);
    opacity: 0.28;
  }

  50% {
    transform: scale(1.055);
    opacity: 0.36;
  }
}

.offer-inner {
  width: 1440px;
  min-height: 1280px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}



/* COMMON SECTION HEADING */

.section-heading {
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 25px;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #1D9E75;
}

.section-heading h2 {
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.25;
  color: #4A4A46;
}

.section-heading p {
  width: 834px;
  margin: 30px auto 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 1.25;
  color: #4A4A46;
}

/* CAROUSEL */

.offer-carousel {
  position: relative;
  width: 100%;
  height: 740px;
  margin-top: 35px;
  touch-action: pan-y;
}

.offer-card {
  position: absolute;
  top: 30px;

  width: 663px;
  height: 675px;

  border-radius: 30px;
  border: 1px solid rgba(7, 71, 0, 0.215);
  overflow: hidden;

  opacity: 0;
  pointer-events: none;

  transform-origin: center center;

  transition:
    left 0.55s ease,
    transform 1s ease,
    opacity 0.55s ease,
    filter 0.55s ease;
}


.offer-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 54px;
  height: 54px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(7, 71, 0, 0.4);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0);

  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);

  box-shadow:
    0 8px 32px rgba(31, 88, 135, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.3);

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 46px;
  line-height: 1;
  color: #043A17;

  cursor: pointer;

  transform: translateY(-50%);
  isolation: isolate;

  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    transform 0.5s ease,
    color 0.5s ease;
}

.offer-arrow::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;
  background: rgba(255, 255, 255, 0.01);

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  box-shadow:
    inset -10px -8px 0 -11px rgba(255, 255, 255, 1),
    inset 0 -9px 0 -8px rgba(255, 255, 255, 1);

  opacity: 0.6;

  filter:
    blur(1px)
    drop-shadow(10px 4px 6px rgba(0, 0, 0, 0.55))
    brightness(115%);

  pointer-events: none;
}

.offer-arrow-left {
  left: calc(50% - 420px);
}

.offer-arrow-right {
  right: calc(50% - 420px);
}

.offer-arrow:hover {
  background: rgba(104, 157, 131, 0.52);
  color: #043A17;

  box-shadow:
    0 10px 34px rgba(31, 88, 135, 0.23),
    inset 0 5px 22px rgba(255, 255, 255, 0.34);
}

.offer-arrow-left:hover {
  transform: translate(-4px, -50%);
}

.offer-arrow-right:hover {
  transform: translate(4px, -50%);
}

.offer-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.offer-arrow-left:active {
  transform: translate(-2px, -50%) scale(0.96);
}

.offer-arrow-right:active {
  transform: translate(2px, -50%) scale(0.96);
}

/* ŚRODKOWY — bez transform, żeby tekst był ostry */
.offer-card.is-active {
  left: calc(50% - 331px);

  opacity: 1;
  pointer-events: auto;
  z-index: 5;

  transform: none;
  filter: none;
}

/* LEWY — mniejszy, cofnięty, lekko zblurowany */
.offer-card.is-left {
  left: calc(50% - 1027px);

  opacity: 0.62;
  pointer-events: auto;
  z-index: 2;

  transform: scale(0.75);
  filter: blur(2px);
}

/* PRAWY — mniejszy, cofnięty, lekko zblurowany */
.offer-card.is-right {
  left: calc(50% + 364px);

  opacity: 0.62;
  pointer-events: auto;
  z-index: 2;

  transform: scale(0.75);
  filter: blur(2px);
}

.offer-card.is-hidden-left {
  left: calc(50% - 1200px);

  opacity: 0;
  transform: scale(0.7);
  filter: blur(4px);
}

.offer-card.is-hidden-right {
  left: calc(50% + 600px);

  opacity: 0;
  transform: scale(0.7);
  filter: blur(4px);
}

.offer-card.is-active .offer-card-inner {
  filter: none;
  transform: none;
}

.offer-card.is-active * {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* CARD GLASS */

.offer-card-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  
  width: 100%;
  height: 100%;

  padding: 25px 36px 36px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  border-radius: 30px;

  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);

  box-shadow:
    0 8px 32px rgba(31, 88, 135, 0.20),
    inset 0 4px 20px rgba(255, 255, 255, 0.30);

  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.offer-card-inner::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;

  background: rgba(255, 255, 255, 0.01);

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  box-shadow:
    inset -10px -8px 0 -11px rgba(255, 255, 255, 0.48),
    inset 0 -9px 0 -8px rgba(255, 255, 255, 0.44);

  opacity: 0.6;

  filter:
    blur(1px)
    drop-shadow(10px 4px 6px rgba(0, 0, 0, 0.55))
    brightness(115%);

  pointer-events: none;
}

.offer-card-inner > * {
  position: relative;
  z-index: 1;
}



.offer-card-day .offer-card-inner {
  background: rgba(159, 212, 188, 0.3);
}

.offer-card-evening .offer-card-inner {
  background: rgba(63, 79, 67, 0.702);
}

.offer-card-full .offer-card-inner {
  background: rgba(168, 232, 226, 0.3);
}

/* CARD CONTENT */

.offer-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.offer-badge {
  min-width: 150px;
  height: 31px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #F7F5F0;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  color: #4A4A46;
}

.offer-icon-badge {
  width: 61px;
  height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;
  background: #F7F5F0;
}

.offer-icon-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.offer-card h3 {
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.25;
}

.offer-card-text,
.offer-for p,
.offer-point p {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.25;
}

.offer-card-text strong {
  font-weight: 500;
}

.offer-for {
  padding: 15px 20px;
  border-radius: 13px;
  background: #F7F5F0;
}

.offer-for strong {
  font-weight: 400;
}

.offer-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-point {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
  align-items: start;
}

.offer-point-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.offer-btn {
  width: 100%;
  height: 46px;
  min-height: 46px;
  margin-top: auto;
  padding: 0 20px;
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;
  border: 1px solid rgba(29, 158, 117, 0.35);
  background: #1D9E75;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;

  color: #FFFFFF;
  text-decoration: none;
}

/* CARD COLORS */

.offer-card-day h3,
.offer-card-day .offer-card-text,
.offer-card-day .offer-point p {
  color: #4A4A46;
}

.offer-card-day .offer-for p {
  color: #4A4A46;
}

.offer-card-evening h3,
.offer-card-evening .offer-card-text,
.offer-card-evening .offer-point p {
  color: #F7F5F0;
}

.offer-card-evening .offer-for p {
  color: #4A4A46;
}

.offer-card-full h3,
.offer-card-full .offer-card-text,
.offer-card-full .offer-point p {
  color: #4A4A46;
}

.offer-card-full .offer-for p {
  color: #4A4A46;
}

/* SERWIS DZIENNY */

.offer-card-day .offer-badge,
.offer-card-day .offer-icon-badge,
.offer-card-day .offer-for {
  background: #F7F5F0;
}

.offer-card-day .offer-btn {
  background: #1D9E75;
  border-color: #1D9E75;
  color: #FFFFFF;
}

/* SERWIS WIECZORNY */

.offer-card-evening .offer-badge,
.offer-card-evening .offer-icon-badge {
  background: #9FD4BC;
  color: #4A4A46;
}

.offer-card-evening .offer-for {
  background: #F7F5F0;
}

.offer-card-evening .offer-btn {
  background: #9FD4BC;
  border-color: #9FD4BC;
  color: #4A4A46;
}

/* SERWIS DZIENNY + WIECZORNY */

.offer-card-full .offer-badge,
.offer-card-full .offer-icon-badge,
.offer-card-full .offer-for {
  background: #F7F5F0;
}

.offer-card-full .offer-btn {
  background: #1D9E75;
  border-color: #1D9E75;
  color: #FFFFFF;
}

/* DOTS */

.offer-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  margin-top: 8px;
  margin-bottom: 100px;
}

.offer-dot {
  position: relative;
  isolation: isolate;

  width: 18px;
  height: 18px;
  padding: 0;

  border: 1px solid rgba(7, 71, 0, 0.42);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0);

  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);

  box-shadow:
    0 5px 16px rgba(31, 88, 135, 0.16),
    inset 0 3px 8px rgba(255, 255, 255, 0.28);

  cursor: pointer;

  transition:
    width 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.offer-dot::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;
  background: rgba(255, 255, 255, 0.01);

  box-shadow:
    inset -6px -5px 0 -7px rgba(255, 255, 255, 0.9),
    inset 0 -6px 0 -6px rgba(255, 255, 255, 0.82);

  opacity: 0.55;

  filter:
    blur(0.6px)
    drop-shadow(4px 2px 4px rgba(0, 0, 0, 0.32))
    brightness(112%);

  pointer-events: none;
}


.offer-dot.active {
  width: 40px;

  border-color: rgba(7, 71, 0, 0.5);
  background: rgba(104, 157, 131, 0.52);

  box-shadow:
    0 7px 20px rgba(31, 88, 135, 0.2),
    inset 0 4px 12px rgba(255, 255, 255, 0.32);
}

.offer-dot:active {
  transform: scale(0.94);
}

/* =========================
   OFFER — DODATKOWE INFORMACJE
========================= */

.offer-extra-content {
  width: 1000px;
  margin: 65px auto 0;
}

/* ZAOPATRZENIE */

.offer-supply-simple {
  width: 760px;
  margin: 0 auto;
  text-align: center;
}

.offer-supply-copy {
  text-align: center;
}

.offer-supply-simple h3,
.offer-pricing-simple h3 {
  margin: 18px 0 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.25;
  color: #044a37d3;
}


.offer-supply-copy > p {
  width: 760px;
  margin: 18px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.5;
  color: #4A4A46;
}



/* WYCENA */

.offer-pricing-simple {
  margin-top: 100px;
  text-align: center;
}

.offer-pricing-description {
  width: 760px;
  margin: 18px auto 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.4;
  color: #4A4A46;
}

.offer-factors {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
}

.offer-factors span {
  min-height: 64px;
  padding: 10px 10px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  border-bottom: 1px solid #044a3770;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #4A4A46;
}


/* BOTTOM CTA */

.offer-bottom-cta {
  margin: 60px auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.offer-bottom-cta p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  color: var(--green);
}

.offer-bottom-cta a {
  width: 266px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(7, 71, 0, 0.436);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);

  box-shadow:
    0 8px 32px rgba(31, 88, 135, 0.2),
    inset 0 4px 20px rgba(255, 255, 255, 0.206);

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: var(--dark-green);
  text-decoration: none;

  transition:
    width 0.5s ease,
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    transform 0.5s ease;

}

.offer-bottom-cta::after{
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;
  background: rgba(255, 255, 255, 0.01);

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  box-shadow:
    inset -10px -8px 0 -11px rgba(255, 255, 255, 1),
    inset 0 -9px 0 -8px rgba(255, 255, 255, 1);

  opacity: 0.6;

  filter:
    blur(1px)
    drop-shadow(10px 4px 6px rgba(0, 0, 0, 0.55))
    brightness(115%);

  pointer-events: none;
}


.offer-bottom-cta a:hover {
  background: rgba(104, 157, 131, 0.52);

  box-shadow:
    0 10px 34px rgba(31, 88, 135, 0.23),
    inset 0 5px 22px rgba(255, 255, 255, 0.34);
}






/* =========================
   PROCESS SECTION
========================= */

.process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  min-height: 1266px;

  background: #F7F5F0;
  color: #4A4A46;

  box-shadow:
    inset 0 18px 30px rgba(28, 43, 34, 0.035),
    inset 0 -18px 30px rgba(28, 43, 34, 0.035);

  --glow-x: -120px;
  --glow-y: -120px;
  --glow-scale: 1;
  --glow-duration: 12s;  
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  width: 720px;
  height: 720px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(29, 158, 117, 0.34) 0%,
    rgba(159, 212, 188, 0.22) 34%,
    rgba(159, 212, 188, 0.08) 58%,
    rgba(159, 212, 188, 0) 76%
  );

  filter: blur(34px);
  pointer-events: none;

  transform:
    translate3d(var(--glow-x), var(--glow-y), 0)
    scale(var(--glow-scale));

  transition:
    transform var(--glow-duration)
    cubic-bezier(0.45, 0.05, 0.25, 1);

  will-change: transform;
}

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(247, 245, 240, 0.18);

  backdrop-filter: blur(10px) saturate(112%);
  -webkit-backdrop-filter: blur(10px) saturate(112%);

  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .process-section::before {
    transition: none;
  }
}



.process-inner {
  position: relative;
  z-index: 2;
  
  width: 1440px;
  min-height: 1266px;
  margin: 0 auto;
  padding: 60px 0;
  
}

.process-heading {
  text-align: center;
  margin-bottom: 60px;
}

.process-title {
  margin: 25px 0 0px;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.25;
  color: #4A4A46;
}

.process-title span,
.process-title em {
  display: block;
}

.process-title em {
  font-style: italic;
  color: #1D9E75;
}

.process-heading p {
  width: 698px;
  margin: 50px auto 80px;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 1.5;
  color: #4A4A46;
}

/* TIMELINE */

.process-timeline {
  position: relative;
  width: 756px;
  margin: 46px auto 0;
}

.process-line {
  display: none;
}

.process-step {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 78px 654px;
  column-gap: 24px;
  align-items: start;

  transition: opacity 0.3s ease;
}

.process-step::after {
  content: "";
  position: absolute;

  left: calc(39px - 0.75px);
  top: 78px;

  width: 1.5px;
  height: calc(100% + 45px - 78px);

  background: #9FD4BC;
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}


.process-step + .process-step {
  margin-top: 45px;
}

/* MARKER */

.process-marker {
  position: relative;
  z-index: 2;

  width: 78px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid #9FD4BC;
  border-radius: 50%;
  background: #F7F5F0;

  transition:
    width 0.28s ease,
    height 0.28s ease,
    margin 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.process-marker-inner {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #9FD4BC;

  font-family: "DM Mono", monospace;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;

  transition:
    width 0.28s ease,
    height 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}


/* CONTENT */

.process-content {
  padding: 8px 14px 10px 0;
  border-radius: 20px;
  position: relative;
  z-index: 2;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.process-content h3 {
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #4A4A46;

  transition:
    font-size 0.28s ease,
    text-shadow 0.28s ease,
    color 0.28s ease;
}

.process-content p {
  margin: 5px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.5;
  color: #4A4A46;

  transition:
    font-size 0.28s ease,
    text-shadow 0.28s ease,
    color 0.28s ease;
}
.process-accent {
  color: #1D9E75;
}

/* HOVER INTERACTION — TYPOGRAPHIC LIFT */

.process-timeline:hover .process-step {
  opacity: 0.38;
}

.process-timeline:hover .process-step:hover {
  opacity: 1;
}

.process-timeline:hover .process-step:hover .process-content h3 {
  font-size: 26px;
  text-shadow: 0 6px 18px rgba(28, 43, 34, 0.18);
}

.process-timeline:hover .process-step:hover .process-content p {
  font-size: 20px;
  text-shadow: 0 5px 14px rgba(28, 43, 34, 0.14);
}

.process-timeline:hover .process-step:hover .process-marker {
  width: 88px;
  height: 88px;
  margin-left: -5px;
  margin-top: -5px;

  background: #F7F5F0;
  border-color: #1D9E75;
  box-shadow: 0 10px 26px rgba(29, 158, 117, 0.2);
}

.process-timeline:hover .process-step:hover .process-marker-inner {
  width: 64px;
  height: 64px;
  background: #1D9E75;
}

/* CONTACT */

.process-contact-small {
  margin: 60px 0 0;

  text-align: center;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.25;
  color: #4A4A46;
}

.process-contact-small a {
  color: #9FD4BC;
  text-decoration: none;
}

.process-contact-small a:hover {
  text-decoration: underline;
  color: var(--green);
}



/* =========================
   ONE-TIME SERVICES
========================= */

.one-time-services-section h2{
  color: var(--dark-green);
  opacity: 0.8;
}

.one-time-services-section {
  width: 100%;
  min-height: 1025px;
  background: #F7F5F0;
  color: #4A4A46;
}

.one-time-services-inner {
  width: 1440px;
  min-height: 1025px;
  margin: 0 auto;
  padding: 80px 50px;
}


.single-services-grid {
  width: 100%;
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 50px;
}

/* CARD STRUCTURE — GOTOWE POD FLIP */

.single-service-card {
  width: 100%;
  height: 227px;
  perspective: 1200px;
}

.single-service-inner {
  position: relative;
  width: 100%;
  height: 100%;

  transition: transform 1s ease;
  transform-style: preserve-3d;
}

.single-service-card:hover {
  transform: translateY(-4px);
}

/* flip na hover — jak będziesz chciała wyłączyć, zakomentuj ten blok */
.single-service-card:hover .single-service-inner {
  transform: rotateY(180deg);
}

.single-service-face {
  position: absolute;
  inset: 0;

  padding: 20px;

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);

  background: rgba(247, 245, 240, 0.72);

  box-shadow:
    0 4px 4px rgba(169, 160, 144, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  overflow: hidden;
}



.single-service-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: rgba(159, 212, 188, 0.42);
  transform: rotateY(180deg);
}

/* =========================
   USŁUGI DODATKOWE — TŁA PRZEDNICH STRON KAFELKÓW
========================= */

.single-service-front {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mycie okien i przeszkleń */
.single-service-card:nth-child(1) .single-service-front {
  background-image: url("assets/service-windows.png");
}

/* Pranie wykładzin */
.single-service-card:nth-child(2) .single-service-front {
  background-image: url("assets/service-carpet.png");
}

/* Sprzątanie po imprezie */
.single-service-card:nth-child(3) .single-service-front {
  background-image: url("assets/service-event.png");
}

/* Sprzątanie po remoncie */
.single-service-card:nth-child(4) .single-service-front {
  background-image: url("assets/service-renovation.png");
}

/* Sprzątanie po przeprowadzce */
.single-service-card:nth-child(5) .single-service-front {
  background-image: url("assets/service-move.png");
}

/* Drobne naprawy i odświeżenie */
.single-service-card:nth-child(6) .single-service-front {
  background-image: url("assets/service-repairs.png");
}


/* ICON */

.single-service-back .single-service-icon {
  width: 61px;
  height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  margin: 0;

  border-radius: 12px;

  background: rgba(247, 245, 240, 0.38);
}

.single-service-back .single-service-icon img {
  width: 40px;
  height: 40px;

  object-fit: contain;
}



/* TEXT */

.single-service-front h3 {
  margin: 20px 0 0;

  font-family: "DM Serif Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #065f46dd;
}

.single-service-front p {
  margin: 12px 0 0;
  width: 250px;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.5;
  color: #4A4A46;
}



/* CENY NA TYLNEJ STRONIE KAFELKÓW */

.single-service-price {
  margin: 14px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;

  color: #065F46;
}

.single-service-extra-price {
  margin: 8px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.25;

  color: #4A4A46;
}

.single-service-minimum {
  margin: 8px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.25;

  color: #4A4A46;
}

/* Dopisek pod ofertą usług jednorazowych*/

.single-services-pricing-note {
  margin: 30px 0;
  width: auto;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.45;
  color: #4A4A46;
  text-align: left;
}

.single-services-note {
  width: 760px;
  margin: 60px auto;

  text-align: center;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  color: #4A4A46;
}

/* CTA — używa tego samego stylu co w sekcji Oferta */

.single-services-cta {
  margin-top: 60px;
}



/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  min-height: 1440px;
  background: #19372e;
  color: #F7F5F0;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 0;

  background-image: url("assets/reviews-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.72;

  transform: scale(1.04) translate3d(0, 0, 0);

  animation: reviews-background-breath 18s ease-in-out infinite;

  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes reviews-background-breath {
  0%,
  100% {
    transform: scale(1.04) translate3d(0, 0, 0);
    opacity: 0.68;
  }

  35% {
    transform: scale(1.075) translate3d(-10px, 7px, 0);
    opacity: 0.76;
  }

  70% {
    transform: scale(1.055) translate3d(8px, -6px, 0);
    opacity: 0.72;
  }
}

.reviews-label {
  text-align: left;
}

.reviews-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 30px 50px 140px;
  position: relative;
  z-index: 1;
}

.reviews-stage {
  position: relative;
  width: 1180px;
  height: 980px;
  margin: 30px auto 0;
}

.reviews-stage-title {
  position: absolute;
  top: 330px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;

  width: 100%;
  pointer-events: none;
  text-align: center;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 128px;
  font-style: italic;
  line-height: 0.96;
  color: rgba(247, 245, 240, 0.924);

  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.04);

}
/* =========================
   OPINIE — UKŁAD POWIADOMIEŃ
========================= */


.review-notification {
  position: absolute;
  z-index: 2;

  padding: 28px 28px 24px;
  overflow: hidden;

  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(5px) saturate(110%);
  -webkit-backdrop-filter: blur(5px) saturate(110%);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  opacity: 0;

  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;

  will-change: transform, opacity;
}

.review-notification::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 28%,
    rgba(255, 255, 255, 0) 55%
  );
}



.review-notification.is-visible:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.22);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transform: translateY(-3px);
}


.review-card-1 {
  top: 145px;
  left: 10px;
  width: 360px;
  transform: translate3d(-55px, 24px, 0) scale(0.97);
  
}

.review-card-2 {
  top: 60 px;
  right: 20px;
  width: 690px;
  transform: translate3d(55px, 24px, 0) scale(0.97);
}

.review-card-3 {
  top: 530px;
  left: 90px;
  width: 520px;
  transform: translate3d(-55px, 24px, 0) scale(0.97);
}

.review-card-4 {
  top: 550px;
  right: 70px;
  width: 390px;

  transform: translate3d(55px, 24px, 0) scale(0.97);
}

.review-notification.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}


/* =========================
   OPINIE — TREŚĆ
========================= */

.review-notification-text {
  position: relative;
  z-index: 1;
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgb(247, 245, 240);

  white-space: normal;
  text-align: left;
}

/* =========================
   OPINIE — PODPIS
========================= */

.review-notification-author {
  position: relative;
  z-index: 1;

  width: 100%;
  margin-top: 15px;

  display: flex;
  justify-content: flex-end;
}

.review-author-data {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;

  text-align: right;
}

.review-author-data strong {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #F7F5F0;
}

.review-author-data span {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(247, 245, 240, 0.872);
}



/* =========================
   OPINIE — PANEL LOGOTYPÓW
========================= */

.trusted-clients-panel {
  position: relative;
  z-index: 3;

  width: 100%;
  margin: -70px auto 0px;
  padding: 50px 0 60px;

  border-radius: 44px 44px 10px 10px;

  background: #F7F5F0;

  box-shadow:
    0 -18px 42px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* heading nad logo */

.trusted-heading {
  margin-top: 0;
  text-align: center;
}

.trusted-heading h2 {
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.25;
  color: var(--dark-green);
  opacity: 0.8;
}

/* LOGO SLIDER */

.trusted-logo-wrapper {
  position: relative;
  width: 100%;
  margin-top: 54px;
  overflow: hidden;
}

.trusted-logo-slider {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.trusted-logo-track {
  width: max-content;
  height: 100%;

  display: flex;
  align-items: center;
  gap: 80px;

  will-change: transform;
}

.trusted-logo-item {
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.trusted-logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* STRZAŁKI */

.trusted-logo-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(29, 158, 117, 0.45);
  background: rgba(247, 245, 240, 0.82);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: #1D9E75;

  cursor: pointer;

  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.trusted-logo-arrow-left {
  left: 34px;
}

.trusted-logo-arrow-right {
  right: 34px;
}

.trusted-logo-wrapper:hover .trusted-logo-arrow {
  opacity: 1;
}

.trusted-logo-arrow:hover {
  background: #1D9E75;
  color: #FFFFFF;
}


/* =========================
   QUOTE SECTION
========================= */

.quote-section {
  width: 100%;
  min-height: 970px;
  background: rgba(28, 43, 34, 0.9);
  color: #F7F5F0;
}

.quote-inner {
  width: 1440px;
  min-height: 970px;
  margin: 0 auto;
  padding: 80px 86px 80px 80px;

  display: grid;
  grid-template-columns: 548px 608px;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE */

.quote-copy {
  width: 548px;
}

.quote-label {
  color: #9FD4BC;
  text-align: left;
}

.quote-title {
  margin: 45px 0 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.25;
  color: #FFFFFF;
}

.quote-title span,
.quote-title em {
  display: block;
}

.quote-title em {
  font-style: italic;
  color: #9FD4BC;
}

.quote-description {
  width: 548px;
  margin: 50px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 1.25;
  color: #EFE9DF;
}

.quote-benefits {
  margin-top: 58px;

  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote-benefit {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.25;
  color: #F7F5F0;
}

.quote-benefit img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.quote-phone {
  margin-top: 70px;
}

.quote-phone p {
  margin: 0 0 22px;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.25;
  color: #F7F5F0;
}

.quote-phone p:last-child {
  margin: 26px 0 0;
}

.quote-phone a {
  color: #9FD4BC;
  text-decoration: underline;
}

.quote-phone-reveal {
  padding: 0;
  border: 0;
  background: transparent;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  color: #F7F5F0;

  cursor: pointer;
}

/* FORM CARD */

.quote-form-card {
  width: 608px;
  height: 786px;

  padding: 30px 30px 54px;

  border-radius: 37px;
  background: #F7F5F0;
  color: #1C2B22;
}

.quote-tabs {
  width: 548px;
  height: 60px;

  padding: 6px 12px;

  display: grid;
  grid-template-columns: 252px 252px;
  column-gap: 20px;

  border-radius: 18px;
  background: #EFE9DF;
}

.quote-tab {
  width: 252px;
  height: 48px;

  border: 0;
  border-radius: 14px;
  background: transparent;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #1C2B22;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.quote-tab.active {
  background: rgba(159, 212, 188, 0.35);
}

.quote-form {
  height: calc(100% - 60px);
  margin-top: 0;

  display: flex;
  flex-direction: column;
}

.quote-form-panel {
  display: none;
}

.quote-form-panel.active {
  display: block;
}


/* GROUPS */

.quote-form-group h3 {
  margin: 0 0 10px 10px;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #1C2B22;
}

.quote-form-group h3 span {
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 14px;
  font-style: italic;
  color: #4A4A46;
}

.quote-contact-group {
  margin-top: 35px;
}

.quote-pricing-group {
  margin-top: 35px;
}

.quote-location-group,
.quote-service-group,
.quote-description-group {
  margin-top: 22px;
}

/* INPUTS */

.quote-form-grid {
  display: grid;
  grid-template-columns: 270px 270px;
  column-gap: 8px;
  row-gap: 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;

  border: 1px solid #A9A090;
  border-radius: 8px;
  background: #F7F5F0;

  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #1C2B22;
}

.quote-form input,
.quote-form select {
  height: 36px;
  padding: 0 18px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 1.25;
  color: #4A4A46;
}

.quote-field-label {
  display: block;
  margin: 12px 0 4px 20px;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.25;
  color: #4A4A46;
}

.quote-pricing-group > input,
.quote-pricing-group > select {
  width: 340px;
  display: block;
}

.quote-form select {

  appearance: none;
  -webkit-appearance: none;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #1C2B22;

  padding-right: 44px;

  background-color: #F7F5F0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1.5 1.5L7 7L12.5 1.5' stroke='%231C2B22' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-size: 14px 9px;
}

.quote-form-note {
  /*width: 490px;*/
  margin: 22px 0 0 22px;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.25;
  color: #4A4A46;
}

/* SINGLE TAB */

.single-form-intro {
  margin: 18px 0 30px;

  text-align: center;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.25;
  color: #1C2B22;
}

.quote-form-panel[data-form-panel="single"] .quote-contact-group {
  margin-top: 0;
}

.quote-form-panel[data-form-panel="single"] .quote-location-group,
.quote-form-panel[data-form-panel="single"] .quote-service-group,
.quote-form-panel[data-form-panel="single"] .quote-description-group {
  margin-top: 18px;
}

.single-form-intro em {
  font-style: italic;
  color: #1D9E75;
}

/* CHECKBOXES */

.quote-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 12px;
}

.quote-checkboxes label {
  display: flex;
  align-items: center;
  gap: 9px;

  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #1C2B22;
}

.quote-checkboxes label:nth-child(3),
.quote-checkboxes label:nth-child(4) {
  grid-column: span 2;
}

.quote-checkboxes input {
  width: 20px;
  height: 20px;
  padding: 0;

  flex-shrink: 0;

  appearance: none;
  -webkit-appearance: none;

  border: 1px solid #A9A090;
  border-radius: 5px;
  background: #F7F5F0;

  cursor: pointer;
}

.quote-checkboxes input:checked {
  background: #1C2B22;
  border-color: #1C2B22;
  box-shadow: inset 0 0 0 4px #F7F5F0;
}

/* TEXTAREA + FILE */

.quote-form textarea {
  width: 548px;
  height: 60px;

  padding: 10px 14px;
  resize: none;
}

.quote-file {
  margin-top: 10px;

  display: inline-flex;
  align-items: center;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #1C2B22;

  cursor: pointer;
}

.quote-file input {
  display: none;
}

.quote-file em {
  font-weight: 300;
  color: #4A4A46;
}

/* BUTTON */

.quote-submit {
  width: 550px;
  height: 49px;

  margin-top: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 15px;
  background: #0D9D6F;

  font-family: "DM Serif Display", serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.25;

  color: #FFFFFF;
  cursor: pointer;
}

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

.quote-form-status {
  min-height: 24px;
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.quote-form-status.is-success {
  color: #1c5b48;
}

.quote-form-status.is-error {
  color: #9b2f2f;
}

.quote-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.quote-privacy-note {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
}

.quote-privacy-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
  width: 100%;
  min-height: 1120px;

  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(159, 212, 188, 0.12) 0%,
      rgba(159, 212, 188, 0.04) 28%,
      rgba(159, 212, 188, 0) 52%
    ),
    #F7F5F0;

  color: #4A4A46;
  overflow: hidden;
}

.about-inner {
  width: 1440px;
  min-height: 1120px;

  margin: 0 auto;
  padding: 80px 68px 90px;
}

/* =========================
   O NAS — WPROWADZENIE
========================= */

.about-intro {
  width: 920px;
}

.about-label {
  margin-bottom: 28px;
  color: #1D9E75;
}

.about-title {
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.18;
  color: #4A4A46;
}

.about-title em {
  display: block;

  font-style: italic;
  color: #1D9E75;
}

.about-green-line {
  width: 180px;
  height: 1px;

  margin-top: 30px;

  background: #1D9E75;
}

.about-description {
  width: 860px;
  margin-top: 44px;
}

.about-description p {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #4A4A46;
}

.about-description p + p {
  margin-top: 22px;
}

.about-features-label {
  margin-top: 58px;
  margin-bottom: 20px;
}

/* =========================
   O NAS — GŁÓWNE KAFELKI
========================= */

.about-features {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.about-feature-card {
  position: relative;

  min-height: 250px;
  padding: 38px 32px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;

  background-color: rgba(247, 245, 240, 0.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  box-shadow:
    0 5px 8px rgba(169, 160, 144, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  isolation: isolate;
  transition-duration: 0.7s;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(247, 245, 240, 0.92) 0%,
      rgba(247, 245, 240, 0.72) 43%,
      rgba(247, 245, 240, 0.08) 100%
    );
}

.about-feature-card:hover{
  border-color: rgba(255, 255, 255, 0.22);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transform: translateY(-3px);
}

.about-feature-card h3 {
  width: 250px;
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.2;
  color: #065f46dd;
}

.about-feature-card p {
  width: 250px;
  margin: 18px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.45;
  color: #4A4A46;
}



.about-feature-team {
  background-image: url("assets/about-team.png");
}

.about-feature-contact {
  background-image: url("assets/about-contact.png");
}

.about-feature-start {
  background-image: url("assets/about-start.png");
}

/* =========================
   O NAS — WARTOŚCI
========================= */

.about-values {
  width: 100%;
  margin-top: 54px;
}

.about-values-label {
  margin-bottom: 20px;
}

.about-values-row {
  width: 100%;
  min-height: 130px;
  padding: 24px 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;

  background: rgba(247, 245, 240, 0.46);

  box-shadow:
    0 5px 14px rgba(169, 160, 144, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-value-item {
  position: relative;

  padding: 14px 34px;

  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  align-items: center;
}

.about-value-item:not(:last-child)::after {
  content: "";
  position: absolute;

  top: 10px;
  right: 0;

  width: 1px;
  height: calc(100% - 20px);

  background: rgba(169, 160, 144, 0.34);
}



.about-value-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.about-value-item h3 {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #1C2B22;
}

.about-value-item p {
  margin: 8px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.35;
  color: #4A4A46;
}


/* =========================
   FAQ
========================= */

.faq-section {
  width: 100%;
  background: #F7F5F0;
  color: #4A4A46;
}

.faq-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 100px 0 100px;
}

.faq-heading {
  text-align: center;
}

.faq-title {
  margin: 25px 0 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.25;
  color: #4A4A46;
}

.faq-title em {
  font-style: italic;
  color: #1D9E75;
}

.faq-list {
  width: 1032px;
  margin: 36px auto 0;
  padding: 0;
  background: transparent;
}

.faq-category {
  display: block;
  margin: 58px 0 18px;
  text-align: left;
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(169, 160, 144, 0.35);
}

.faq-list > .faq-item:first-child,
.faq-category + .faq-item {
  border-top: 1px solid rgba(169, 160, 144, 0.35);
}

.faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;

  width: 0;
  height: 1px;

  background: rgba(29, 158, 117, 0.7);
  box-shadow: 0 1px 3px rgba(29, 158, 117, 0.35);

  transition: width 0.35s ease;
}

.faq-item.active::after {
  width: 100%;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  border: 0;
  background: transparent;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #1C2B22;
  text-align: left;

  cursor: pointer;

  transition: color 0.25s ease;
}

.faq-question > span:first-child {
  display: block;
}

.faq-question:hover,
.faq-item.active .faq-question {
  color: #1D9E75;
}

.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;

  border: 1px solid rgba(169, 160, 144, 0.65);
  border-radius: 50%;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 10px;
  height: 1.5px;

  border-radius: 999px;
  background: #4A4A46;

  transform: translate(-50%, -50%);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

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

.faq-question:hover .faq-icon,
.faq-item.active .faq-icon {
  border-color: #1D9E75;
}

.faq-item.active .faq-icon {
  background: rgba(159, 212, 188, 0.18);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: #1D9E75;
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.faq-answer p {
  width: 820px;
  margin: -4px 0 26px;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.4;
  color: #4A4A46;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-link {
  color: #1D9E75;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 158, 117, 0.45);

  transition: border-color 0.2s ease;
}

.faq-link:hover {
  border-color: #1D9E75;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  width: 100%;
  background: #17231C;
  color: #F7F5F0;
}

.footer-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 86px 30px;
}

/* =========================
   CTA
========================= */

.footer-cta {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}

.footer-cta h2 {
  margin: 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #F7F5F0;
}

.footer-cta h2 em {
  font-style: italic;
  color: #9FD4BC;
}

.footer-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  color: #F7F5F0;
  background: #67ca8f73;

  line-height: 1;

  text-decoration: none;

}

.footer-btn:hover {

  transform: translateY(-2px);
  background: #54e48eb0;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.footer-btn:active {
  transform: translateY(0);
}

/* =========================
   SEPARATORY
========================= */

.footer-separator {
  width: 100%;
  height: 1px;
  margin: 28px 0 52px;

  background: rgba(159, 212, 188, 0.28);
}

.footer-separator-bottom {
  margin: 48px 0 24px;
}

/* =========================
   GŁÓWNA CZĘŚĆ
========================= */

.footer-content {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

/* =========================
   LOGO I OPIS
========================= */

.footer-brand {
  max-width: 350px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
}

.footer-description {
  margin: 30px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247, 245, 240, 0.78);
}

.footer-slogan {
  margin: 24px 0 0;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #F7F5F0;
}

.footer-slogan em {
  display: block;
  font-style: italic;
  color: #9FD4BC;
}

/* =========================
   KOLUMNY
========================= */

.footer-column h3 {
  margin: 0 0 24px;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #9FD4BC;

  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================
   NAWIGACJA
========================= */

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

.footer-links a {
  position: relative;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(247, 245, 240, 0.82);

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 1px;

  background: #9FD4BC;

  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: #F7F5F0;
  transform: translateX(3px);
}

.footer-links a:hover::after {
  width: 100%;
}

/* =========================
   KONTAKT
========================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact-main {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: #F7F5F0;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-contact-main:hover {
  color: #9FD4BC;
}

.footer-whatsapp-link {
  position: relative;
  margin-top: 22px;

  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: #F7F5F0;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-whatsapp-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;

  background: rgba(159, 212, 188, 0.55);

  transition: background-color 0.2s ease;
}

.footer-whatsapp-link:hover {
  color: #9FD4BC;
}

.footer-whatsapp-link:hover::after {
  background: #9FD4BC;
}

.footer-email {
  margin-top: 28px;
}

.footer-response-time {
  max-width: 245px;
  margin: 10px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(247, 245, 240, 0.58);
}

/* =========================
   DANE FIRMY
========================= */

.footer-company-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-company-data p {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(247, 245, 240, 0.82);
}

.footer-company-data p:first-child {
  font-weight: 500;
  color: #F7F5F0;
}

.footer-service-area {
  max-width: 250px;
  margin: 28px 0 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(247, 245, 240, 0.58);
}

/* =========================
   DOLNY PASEK
========================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(247, 245, 240, 0.55);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-legal-links a {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(247, 245, 240, 0.65);

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #9FD4BC;
}

/* =========================
   FOCUS
========================= */

.footer-cta-button:focus-visible,
.footer-links a:focus-visible,
.footer-contact-main:focus-visible,
.footer-whatsapp-link:focus-visible,
.footer-legal-links a:focus-visible,
.footer-logo-link:focus-visible {
  outline: 2px solid #9FD4BC;
  outline-offset: 4px;
}




/* =========================
   RESPONSYWNOŚĆ: PROCES WSPÓŁPRACY
========================= */

@media (max-width: 900px) {
  .process-section {
    min-height: auto;
  }

  .process-inner {
    width: 100%;
    min-height: auto;
    padding: 40px 20px 70px;
  }

  .process-heading p {
    width: 100%;
  }

  .process-timeline {
    width: 100%;
    margin-top: 40px;
  }

  .process-line {
    left: 30px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    column-gap: 18px;
  }

  .process-marker {
    width: 60px;
    height: 60px;
  }

  .process-marker-inner {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .process-content h3 {
    font-size: 22px;
  }

  .process-content p {
    font-size: 18px;
  }

  .process-timeline:hover .process-step {
    opacity: 1;
  }

  .process-timeline:hover .process-step:hover .process-content {
    background: transparent;
    box-shadow: none;
  }
}



/* =========================
   RESPONSYWNOŚĆ: OPINIE I LOGOTYPY KLIENTÓW
========================= */

@media (max-width: 900px) {
  .trusted-logo-wrapper {
    margin-top: 42px;
  }

  .trusted-logo-track {
    gap: 56px;
  }

  .trusted-logo-item img {
    height: 46px;
  }

  .trusted-logo-arrow {
    display: none;
  }
}



/* =========================
   RESPONSYWNOŚĆ: FORMULARZ WYCENY / KONTAKT
========================= */

@media (max-width: 1439px) {
  .quote-inner {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    grid-template-columns: 1fr 608px;
    column-gap: 70px;
  }
}

@media (max-width: 1100px) {
  .quote-section {
    min-height: auto;
  }

  .quote-inner {
    min-height: auto;
    padding: 70px 30px;
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .quote-copy,
  .quote-description,
  .quote-form-card {
    width: 100%;
  }

  .quote-form-card {
    max-width: 608px;
    height: auto;
    min-height: 786px;
  }
}

@media (max-width: 640px) {
  .quote-form-card {
    padding: 24px 18px 36px;
    border-radius: 28px;
  }

  .quote-tabs {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quote-tab {
    width: 100%;
  }

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

  .quote-form input,
  .quote-form select,
  .quote-form textarea,
  .quote-pricing-group > input,
  .quote-pricing-group > select,
  .quote-submit {
    width: 100%;
  }

  .quote-checkboxes {
    grid-template-columns: 1fr;
  }

  .quote-checkboxes label:nth-child(3),
  .quote-checkboxes label:nth-child(4) {
    grid-column: auto;
  }
}






/* =========================
   RESPONSYWNOŚĆ: FAQ
========================= */

@media (max-width: 1439px) {
  .faq-inner {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .faq-list {
    width: 100%;
    max-width: 1032px;
  }
}

@media (max-width: 900px) {
  .faq-inner {
    padding: 60px 20px 80px;
  }

  .faq-title {
    font-size: 34px;
  }

  .faq-category {
    margin-top: 46px;
  }

  .faq-question {
    min-height: 68px;
    gap: 20px;
    font-size: 17px;
  }

  .faq-answer p {
    width: 100%;
    font-size: 17px;
  }
}



/* =========================
   RESPONSYWNOŚĆ: STOPKA
========================= */

@media (max-width: 1200px) {
  .footer-inner {
    padding-left: 50px;
    padding-right: 50px;
  }

  .footer-content {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 50px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-service-area {
    max-width: 500px;
  }
}

@media (max-width: 850px) {
  .footer-inner {
    padding: 50px 24px 28px;
  }

  .footer-cta {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-cta-button {
    width: 100%;
    max-width: 280px;
  }

  .footer-separator {
    margin: 42px 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-company {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-company {
    grid-column: auto;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-legal-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}



/* =========================
   RESPONSYWNOŚĆ: OFERTA
========================= */

@media (max-width: 1100px) {
  .offer-supply-block,
  .offer-pricing-block {
    width: calc(100% - 40px);
  }

  .offer-block-description {
    width: 100%;
  }

  .supply-features,
  .pricing-flip-grid {
    grid-template-columns: 1fr;
  }

  .offer-bottom-cta {
    flex-direction: column;
  }

  .pricing-flip-card:hover .pricing-flip-inner {
    transform: none;
  }

  .pricing-flip-card {
    height: auto;
  }

  .pricing-flip-inner {
    transform: none !important;
  }

  .pricing-flip-front,
  .pricing-flip-back {
    position: relative;
    transform: none;
    min-height: 90px;
  }

  .pricing-flip-back {
    margin-top: 10px;
  }
}

@media (max-width: 1439px) {
  .offer-inner {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .offer-arrow {
    display: none;
  }
  .offer-section {
    min-height: auto;
  }

  .offer-inner {
    min-height: auto;
    padding: 50px 20px 70px;
  }

  .section-heading p,
  .offer-pricing {
    width: 100%;
  }

  .offer-carousel {
    height: auto;
    margin-top: 40px;
  }

  .offer-card,
  .offer-card.is-active,
  .offer-card.is-left,
  .offer-card.is-right {
    position: relative;
    top: auto;
    left: auto;

    width: 100%;
    height: auto;

    opacity: 1;
    pointer-events: auto;

    transform: none;
    filter: none;

    margin-bottom: 24px;
  }

  .offer-card.is-hidden-left,
  .offer-card.is-hidden-right {
    opacity: 1;
    transform: none;
  }

  .offer-dots {
    display: none;
  }

  .pricing-box {
    grid-template-columns: 1fr;
  }

  .offer-note {
    width: 100%;
  }
}



/* =========================
   RESPONSYWNOŚĆ: HERO I NAWIGACJA
========================= */

@media (max-width: 1399px) {
  .hero-inner,
  .hero-nav {
    width: calc(100% - 100px);
  }

  .hero-nav {
    grid-template-columns: 206px 1fr 252px;
    column-gap: 32px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hero-features {
    width: calc(100% - 176px);
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .glass-btn {
    justify-self: end;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero-nav {
    height: auto;
    grid-template-columns: 206px 1fr;
    row-gap: 24px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;

    justify-content: flex-start;
    flex-wrap: wrap;
  }



  .hero-content {
    margin-left: 40px;
  }

  .hero-logo {
    width: 560px;
    height: auto;
    transform: none;
  }

  .hero-features {
    width: calc(100% - 80px);
    height: auto;

    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}

@media (max-width: 768px) {
  .glass-btn {
    width: 220px;
    justify-self: start;
  }

  .hero-inner,
  .hero-nav {
    width: calc(100% - 40px);
  }

  .hero-nav {
    grid-template-columns: 1fr;
  }

  .nav-logo-link,
  .nav-logo {
    width: 180px;
    height: auto;
  }

  .nav-links {
    display: none;
  }


  .hero-content {
    margin-left: 0;
    padding-top: 45px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-logo {
    width: 100%;
    margin-top: 45px;
  }

  .hero-text {
    width: 100%;
    font-size: 18px;
  }

  .hero-buttons {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-features {
    width: 100%;

    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}






/* dostepnosc */
@media (prefers-reduced-motion: reduce) {
  .review-notification,
  .review-card-1,
  .review-card-2,
  .review-card-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero-drip {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .reviews-section::before {
    animation: none;
    transform: scale(1.04);
  }
}