.kontakt-hero-greeting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 22px auto 0 auto;
  max-width: 600px;
}
.kontakt-hero-greeting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}
.kontakt-hero-greeting-text {
  font-size: 1.18rem;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 900px) {
  .kontakt-hero-greeting-text {
    font-size: 1rem;
  }
  .kontakt-hero-greeting {
    gap: 10px;
    margin-top: 12px;
  }
}
@media (max-width: 600px) {
  .kontakt-hero-greeting-text {
    font-size: 0.95rem;
  }
  .kontakt-hero-greeting {
    gap: 6px;
    margin-top: 6px;
  }
}
.kontakt-hero-block {
  width: 100%;
  min-height: 180px;
  background: linear-gradient(180deg,#fff 0%,#f6f8fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 0 38px 0;
}
.kontakt-hero-bg {
  display: none;
}
.kontakt-hero-content {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.kontakt-hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #1976d2;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.kontakt-hero-underline {
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 60%,#ff9800 100%);
  border-radius: 3px;
  margin: 0 auto 0 auto;
}
@media (max-width: 900px) {
  .kontakt-hero-block {
    min-height: 120px;
    padding: 28px 0 18px 0;
  }
  .kontakt-hero-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .kontakt-hero-underline {
    width: 70px;
    height: 4px;
  }
}
@media (max-width: 600px) {
  .kontakt-hero-block {
    min-height: 70px;
    padding: 12px 0 8px 0;
  }
  .kontakt-hero-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .kontakt-hero-underline {
    width: 38px;
    height: 3px;
  }
}
.montaz-faq-block {
  width: 100%;
  background: #fff;
  padding: 54px 0 44px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.kontakt-form-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 0 48px 0;
  background: none;
}

.kontakt-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  padding: 32px 36px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  transition: box-shadow 0.2s;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-form-row {
  display: flex;
  gap: 24px;
}

.kontakt-form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt-form-field label {
  font-weight: 500;
  color: #1976d2;
  margin-bottom: 2px;
}

.kontakt-form-field input,
.kontakt-form-field textarea {
  border: 1.5px solid #e3eaf2;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fafc;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kontakt-form-field input:focus,
.kontakt-form-field textarea:focus {
  border-color: #1976d2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.10);
}

.kontakt-form-field textarea {
  resize: vertical;
  min-height: 48px;
  max-height: 180px;
}

.kontakt-form-actions {
  display: flex;
  justify-content: flex-end;
}

.kontakt-form-submit {
  background: linear-gradient(90deg, #1976d2 0%, #43a047 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 12px;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.kontakt-form-submit:hover,
.kontakt-form-submit:focus {
  background: linear-gradient(90deg, #43a047 0%, #1976d2 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .kontakt-form-card {
    padding: 20px 8px;
  }
  .kontakt-form-row {
    flex-direction: column;
    gap: 16px;
  }
}
.kontakt-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25, 118, 210, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.kontakt-popup-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(25, 118, 210, 0.18);
  padding: 38px 32px 28px 32px;
  text-align: center;
  max-width: 340px;
  width: 90vw;
  color: #1976d2;
}
.kontakt-popup-content h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.kontakt-popup-content p {
  font-size: 1.08rem;
  margin-bottom: 22px;
}
#close-kontakt-popup {
  background: linear-gradient(90deg, #1976d2 0%, #43a047 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
#close-kontakt-popup:hover,
#close-kontakt-popup:focus {
  background: linear-gradient(90deg, #43a047 0%, #1976d2 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  transform: translateY(-2px);
}
.montaz-faq-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 38px;
  text-align: center;
}
.montaz-faq-list {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.montaz-faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(40,40,40,0.10);
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.montaz-faq-item.open {
  box-shadow: 0 8px 32px 0 rgba(40,40,40,0.16);
  transform: scale(1.01);
}
.montaz-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.13rem;
  color: #1976d2;
  font-weight: 700;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.18s;
}
.montaz-faq-question:hover {
  background: #e3eaf2;
}
.montaz-faq-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e3eaf2;
  color: #1976d2;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  line-height: 28px;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.07);
  transition: background 0.18s, color 0.18s;
}
.montaz-faq-item.open .montaz-faq-icon {
  background: #ff9800;
  color: #fff;
}
.montaz-faq-answer {
  font-size: 1.08rem;
  color: #444;
  font-weight: 500;
  padding: 0 24px 18px 24px;
  display: none;
  animation: fadeInFaq 0.3s;
}
.montaz-faq-item.open .montaz-faq-answer {
  display: block;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .montaz-faq-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .montaz-faq-list {
    max-width: 98vw;
    gap: 10px;
  }
  .montaz-faq-question {
    font-size: 1rem;
    padding: 12px 10px;
    gap: 10px;
  }
  .montaz-faq-icon {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    line-height: 22px;
  }
  .montaz-faq-answer {
    font-size: 0.95rem;
    padding: 0 10px 10px 10px;
  }
}
@media (max-width: 600px) {
  .montaz-faq-block {
    padding: 24px 0 18px 0;
  }
  .montaz-faq-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}
.montaz-express-block {
  position: relative;
  width: 100%;
  min-height: 340px;
  background: #232a36;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.montaz-express-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232a36;
  opacity: 1;
  z-index: 0;
}
.montaz-express-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 54px 32px 44px 32px;
}
.montaz-express-img {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.montaz-express-img img {
  width: 200px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(40,40,40,0.13);
  object-fit: cover;
}
.montaz-express-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.montaz-express-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.13;
}
.montaz-express-desc {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 500;
}
.montaz-express-btn {
  background: linear-gradient(90deg,#ff9800 0%,#ffb74d 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 15px 44px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.14);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.montaz-express-btn:hover {
  background: linear-gradient(90deg,#ffb74d 0%,#ff9800 100%);
  transform: scale(1.04);
}

.kontakt-mapa-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 0 48px 0;
  background: none;
}
.kontakt-mapa-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  border: 1.5px solid #e3eaf2;
  padding: 32px 36px 28px 36px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.kontakt-mapa-title {
  font-size: 1.18rem;
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 8px;
  text-align: left;
}
.kontakt-mapa-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.08);
}
.kontakt-mapa-embed iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}
.kontakt-mapa-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.kontakt-mapa-btn {
  background: linear-gradient(90deg, #1976d2 0%, #43a047 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  display: inline-block;
}
.kontakt-mapa-btn:hover,
.kontakt-mapa-btn:focus {
  background: linear-gradient(90deg, #43a047 0%, #1976d2 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  transform: translateY(-2px);
}
.kontakt-info-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 0 48px 0;
  background: none;
}
.kontakt-info-grid {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  border: 1.5px solid #e3eaf2;
  padding: 32px 36px 28px 36px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.kontakt-info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.kontakt-info-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8fafc;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.08);
  margin-bottom: 8px;
}
.kontakt-info-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}
.kontakt-info-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1976d2;
  text-align: center;
}
.kontakt-info-text {
  font-size: 1.08rem;
  color: #222;
  text-align: center;
  font-weight: 500;
}
.kontakt-info-tel,
.kontakt-info-email {
  color: #1976d2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
}
.kontakt-info-tel:hover,
.kontakt-info-email:hover {
  text-decoration: underline;
}
.kontakt-info-actions {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.kontakt-info-btn {
  background: linear-gradient(90deg, #43a047 0%, #1976d2 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.kontakt-info-btn:hover,
.kontakt-info-btn:focus {
  background: linear-gradient(90deg, #1976d2 0%, #43a047 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  transform: translateY(-2px);
}
.kontakt-godziny-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 0 48px 0;
  background: none;
}
.kontakt-godziny-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  border: 1.5px solid #e3eaf2;
  padding: 32px 36px 28px 36px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.kontakt-social-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 0 48px 0;
  background: none;
}
.kontakt-social-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  border: 1.5px solid #e3eaf2;
  padding: 32px 36px 28px 36px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.kontakt-spotkanie-section {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.kontakt-spotkanie-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/happy-family-window-3665.webp') center center/cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}
.kontakt-spotkanie-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.10);
  padding: 38px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.kontakt-spotkanie-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 8px;
}
.kontakt-spotkanie-desc {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
  font-weight: 500;
}
.kontakt-spotkanie-btn {
  background: linear-gradient(90deg, #ff9800 0%, #43a047 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 12px;
  padding: 15px 44px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.kontakt-spotkanie-btn:hover,
.kontakt-spotkanie-btn:focus {
  background: linear-gradient(90deg, #43a047 0%, #ff9800 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  transform: translateY(-2px);
}

.koszyk-header-section {
  width: 100%;
  background: #f8fafc;
  padding: 48px 0 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.koszyk-progress-nav {
  width: 100%;
  background: #fff;
  padding: 0 0 38px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.koszyk-list-section {
  width: 100%;
  background: #fff;
  padding: 0 0 48px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.koszyk-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.koszyk-item {
  display: grid;
  grid-template-columns: 90px 1.5fr 0.8fr 1fr 0.7fr;
  align-items: center;
  gap: 18px;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.08);
  border: 1.5px solid #e3eaf2;
  padding: 18px 24px;
  min-height: 110px;
}
.koszyk-item-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3eaf2;
}
.koszyk-item-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 6px;
}
.koszyk-item-params {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.98rem;
  color: #444;
  font-weight: 500;
}
.koszyk-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.koszyk-qty-btn {
  width: 32px;
  height: 32px;
  background: #e3eaf2;
  color: #1976d2;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.koszyk-qty-btn:hover,
.koszyk-qty-btn:focus {
  background: #1976d2;
  color: #fff;
  transform: scale(1.08);
}
.koszyk-qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
}
.koszyk-item-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  align-items: flex-start;
}
.koszyk-item-unit {
  color: #1976d2;
}
.koszyk-item-total {
  color: #43a047;
}
.koszyk-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
}
.koszyk-remove-btn {
  background: linear-gradient(90deg, #ff9800 0%, #1976d2 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.koszyk-remove-btn:hover,
.koszyk-remove-btn:focus {
  background: linear-gradient(90deg, #1976d2 0%, #ff9800 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .koszyk-item {
    grid-template-columns: 70px 1fr 0.8fr 1fr 0.7fr;
    padding: 12px 8px;
    gap: 10px;
    min-height: 90px;
  }
  .koszyk-item-img img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .koszyk-list {
    gap: 14px;
  }
  .koszyk-item {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    padding: 8px 2px;
    min-height: 0;
  }
  .koszyk-item-img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .koszyk-item-info {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .koszyk-item-qty {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .koszyk-item-price {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .koszyk-item-remove {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: center;
    margin-top: 4px;
  }
}
}
.koszyk-progress-bar {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.koszyk-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 1rem;
  color: #1976d2;
  font-weight: 600;
}
.koszyk-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  right: -24px;
  width: 48px;
  height: 4px;
  background: #e3eaf2;
  border-radius: 2px;
  z-index: 0;
}
.koszyk-progress-step.active {
  color: #1976d2;
}
.koszyk-progress-step.active .koszyk-progress-icon svg circle {
  fill: #1976d2;
}
.koszyk-progress-step .koszyk-progress-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.koszyk-progress-step .koszyk-progress-label {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}
.koszyk-progress-step:not(.active) .koszyk-progress-icon svg circle {
  fill: #e3eaf2;
}
.koszyk-progress-step:not(.active) .koszyk-progress-label {
  color: #a0aec0;
  font-weight: 500;
}
@media (max-width: 700px) {
  .koszyk-progress-bar {
    gap: 18px;
  }
  .koszyk-progress-step .koszyk-progress-icon {
    width: 28px;
    height: 28px;
  }
  .koszyk-progress-step .koszyk-progress-label {
    font-size: 0.92rem;
  }
  .koszyk-progress-step:not(:last-child)::after {
    width: 22px;
    right: -11px;
    height: 3px;
  }
}
}
.koszyk-header-card {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.koszyk-rabat-section {
  margin: 32px auto 0 auto;
  max-width: 420px;
  background: #f7fbff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.07);
  padding: 24px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.koszyk-rabat-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.koszyk-rabat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #1976d2;
  margin-bottom: 2px;
}
.koszyk-rabat-input {
  padding: 10px 14px;
  font-size: 1rem;
  border: 2px solid #1976d2;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  margin-bottom: 4px;
}
.koszyk-rabat-input:focus {
  border-color: #43b86a;
}
.koszyk-rabat-btn {
  padding: 10px 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #43b86a 0%, #1976d2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.09);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 2px;
}
.koszyk-rabat-btn:hover, .koszyk-rabat-btn:focus {
  background: linear-gradient(90deg, #1976d2 0%, #43b86a 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.13);
}
@media (max-width: 600px) {
  .koszyk-rabat-section {
    max-width: 98vw;
    padding: 16px 8vw 16px 8vw;
  }
  .koszyk-rabat-form {
    gap: 8px;
  }
  .koszyk-rabat-input {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
  .koszyk-rabat-btn {
    font-size: 1rem;
    padding: 9px 0;
  }
}
.koszyk-summary-section {
    margin: 0 auto;
}
.koszyk-summary-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.07);
  padding: 28px 32px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.koszyk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  color: #222;
}
.koszyk-summary-label {
  font-weight: 500;
}
.koszyk-summary-value {
  font-weight: 600;
  color: #1976d2;
}
.koszyk-summary-hint {
  font-size: 0.98rem;
  color: #43b86a;
  font-weight: 500;
  margin: 0 0 2px 0;
  text-align: right;
}
.koszyk-summary-total .koszyk-summary-label {
  font-size: 1.15rem;
  font-weight: 700;
}
.koszyk-summary-total .koszyk-summary-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #43b86a;
}
@media (max-width: 1100px) {
  .koszyk-summary-section {
    position: static;
    width: 100%;
    margin: 32px auto 0 auto;
    max-width: 420px;
  }
  .koszyk-summary-card {
    padding: 24px 18px 18px 18px;
  }
}
@media (max-width: 600px) {
  .koszyk-summary-section {
    max-width: 98vw;
    padding: 0 8vw;
    margin-top: 18px;
  }
  .koszyk-summary-card {
    padding: 16px 8vw 14px 8vw;
    gap: 12px;
  }
  .koszyk-summary-row {
    font-size: 1rem;
  }
  .koszyk-summary-total .koszyk-summary-label,
  .koszyk-summary-total .koszyk-summary-value {
    font-size: 1.08rem;
  }
}
.koszyk-dostawa-section {
  margin: 38px auto 0 auto;
  max-width: 420px;
  background: #f7fbff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.07);
  padding: 24px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.koszyk-dostawa-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 18px;
  text-align: center;
}
.koszyk-dostawa-form {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}
.koszyk-dostawa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(25, 118, 210, 0.07);
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.koszyk-dostawa-option input[type="radio"] {
  accent-color: #1976d2;
  width: 18px;
  height: 18px;
  margin-right: 2px;
}
.koszyk-dostawa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.koszyk-dostawa-label {
  font-size: 1rem;
  color: #222;
}
.koszyk-platnosc-section {
  margin: 38px auto 0 auto;
  max-width: 420px;
  background: #f7fbff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.07);
  padding: 24px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.koszyk-platnosc-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 18px;
  text-align: center;
}
.koszyk-platnosc-form {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}
.koszyk-platnosc-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(25, 118, 210, 0.07);
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.koszyk-platnosc-option input[type="radio"] {
  accent-color: #1976d2;
  width: 18px;
  height: 18px;
  margin-right: 2px;
}
.koszyk-platnosc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  min-width: 32px;
  height: 32px;
}
.platnosc-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(25, 118, 210, 0.07);
}
.koszyk-platnosc-label {
  font-size: 1rem;
  color: #222;
}
.koszyk-akcesoria-section {
  margin: 48px auto 0 auto;
  max-width: 1100px;
  padding: 0 18px 0 18px;
}
.koszyk-akcesoria-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
  text-align: left;
}
.koszyk-akcesoria-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.koszyk-akcesoria-list {
  display: flex;
  gap: 28px;
  min-width: 700px;
}
.koszyk-akcesoria-card {
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 16px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.koszyk-akcesoria-card:hover {
  box-shadow: 0 4px 18px 0 rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.03);
}
.koszyk-akcesoria-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 14px;
  background: #f7fbff;
}
.koszyk-akcesoria-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.koszyk-akcesoria-name {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1976d2;
}
.koszyk-akcesoria-desc {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 6px;
}
.koszyk-akcesoria-btn {
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #43b86a 0%, #1976d2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(25, 118, 210, 0.09);
  transition: background 0.2s, box-shadow 0.2s;
}
.koszyk-akcesoria-btn:hover, .koszyk-akcesoria-btn:focus {
  background: linear-gradient(90deg, #1976d2 0%, #43b86a 100%);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.13);
}
@media (max-width: 900px) {
  .koszyk-akcesoria-list {
    min-width: 100vw;
    gap: 18px;
  }
  .koszyk-akcesoria-card {
    min-width: 220px;
    max-width: 260px;
    padding: 14px 10px 12px 10px;
  }
  .koszyk-akcesoria-img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 600px) {
  .koszyk-akcesoria-section {
    padding: 0 2vw 0 2vw;
  }
  .koszyk-akcesoria-title {
    font-size: 1.08rem;
    margin-bottom: 16px;
  }
  .koszyk-akcesoria-list {
    gap: 12px;
  }
  .koszyk-akcesoria-card {
    min-width: 160px;
    max-width: 180px;
    padding: 8px 4px 8px 4px;
  }
  .koszyk-akcesoria-img {
    width: 60px;
    height: 60px;
  }
  .koszyk-akcesoria-name {
    font-size: 0.98rem;
  }
  .koszyk-akcesoria-desc {
    font-size: 0.92rem;
  }
  .koszyk-akcesoria-btn {
    font-size: 0.95rem;
    padding: 7px 10px;
  }
}
.koszyk-platnosc-option input[type="radio"]:checked + .koszyk-platnosc-icon + .koszyk-platnosc-label,
.koszyk-platnosc-option input[type="radio"]:checked ~ .koszyk-platnosc-label {
  color: #1976d2;
  font-weight: 600;
}
.koszyk-platnosc-option input[type="radio"]:checked ~ .koszyk-platnosc-icon svg rect,
.koszyk-platnosc-option input[type="radio"]:checked ~ .koszyk-platnosc-icon svg circle {
  fill: #43b86a;
}
.koszyk-platnosc-option:hover,
.koszyk-platnosc-option:focus-within {
  border-color: #1976d2;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.13);
}
@media (max-width: 700px) {
  .koszyk-platnosc-form {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .koszyk-platnosc-section {
    padding: 18px 8vw 14px 8vw;
    max-width: 98vw;
  }
}
.koszyk-dostawa-option input[type="radio"]:checked + .koszyk-dostawa-icon + .koszyk-dostawa-label,
.koszyk-dostawa-option input[type="radio"]:checked ~ .koszyk-dostawa-label {
  color: #1976d2;
  font-weight: 600;
}
.koszyk-dostawa-option input[type="radio"]:checked ~ .koszyk-dostawa-icon svg circle {
  fill: #43b86a;
}
.koszyk-dostawa-option:hover,
.koszyk-dostawa-option:focus-within {
  border-color: #1976d2;
  box-shadow: 0 2px 12px 0 rgba(25, 118, 210, 0.13);
}
@media (max-width: 700px) {
  .koszyk-dostawa-form {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .koszyk-dostawa-section {
    padding: 18px 8vw 14px 8vw;
    max-width: 98vw;
  }
}
}
.koszyk-header-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 0;
  text-align: center;
}
.koszyk-header-subtitle {
  font-size: 1.13rem;
  color: #a0aec0;
  font-weight: 500;
  text-align: center;
  margin-top: 0;
}
@media (max-width: 700px) {
  .koszyk-header-section {
    padding: 28px 0 18px 0;
  }
  .koszyk-header-title {
    font-size: 1.5rem;
  }
  .koszyk-header-subtitle {
    font-size: 0.98rem;
  }
}
}
@media (max-width: 700px) {
  .kontakt-spotkanie-content {
    padding: 18px 6px 14px 6px;
    max-width: 98vw;
  }
  .kontakt-spotkanie-title {
    font-size: 1.1rem;
  }
  .kontakt-spotkanie-btn {
    padding: 12px 18px;
    font-size: 1rem;
  }
}
}
.kontakt-social-title {
  font-size: 1.13rem;
  font-weight: 600;
  color: #1976d2;
  text-align: center;
  margin-bottom: 8px;
}
.kontakt-social-icons {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.kontakt-social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
}
.kontakt-social-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
.kontakt-social-icon:hover,
.kontakt-social-icon:focus {
  transform: scale(1.18);
  box-shadow: 0 4px 16px 0 rgba(25, 118, 210, 0.18);
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(25,118,210,0.10));
}
.kontakt-social-facebook:hover svg circle {
  fill: #1565c0;
}
.kontakt-social-instagram:hover svg circle {
  fill: #c2185b;
}
.kontakt-social-linkedin:hover svg circle {
  fill: #005983;
}
@media (max-width: 700px) {
  .kontakt-social-card {
    padding: 18px 6px 14px 6px;
    max-width: 98vw;
  }
  .kontakt-social-icons {
    gap: 18px;
  }
}
}
.kontakt-godziny-icon {
  flex: 0 0 44px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-right: 18px;
}
.kontakt-godziny-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kontakt-godziny-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  padding: 10px 0;
}
.kontakt-godziny-day {
  color: #1976d2;
  font-weight: 600;
}
.kontakt-godziny-hours {
  color: #43a047;
  font-weight: 600;
}
.kontakt-godziny-zamkniete {
  color: #ff9800;
  font-weight: 700;
}
.kontakt-godziny-divider {
  height: 1.5px;
  background: #e3eaf2;
  width: 100%;
  margin: 0;
}
@media (max-width: 700px) {
  .kontakt-godziny-card {
    padding: 18px 6px 14px 6px;
    gap: 12px;
    max-width: 98vw;
  }
  .kontakt-godziny-icon {
    margin-right: 10px;
  }
  .kontakt-godziny-item {
    font-size: 0.98rem;
    padding: 7px 0;
  }
}
@media (max-width: 900px) {
  .kontakt-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 6px 14px 6px;
  }
}
@media (max-width: 700px) {
  .kontakt-mapa-card {
    padding: 18px 6px 14px 6px;
    gap: 14px;
  }
  .kontakt-mapa-embed iframe {
    height: 220px;
  }
}
}
.montaz-express-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .montaz-express-content {
    flex-direction: column;
    gap: 28px;
    padding: 38px 8vw 28px 8vw;
    align-items: center;
    justify-content: center;
  }
  .montaz-express-img {
    flex: 0 0 120px;
  }
  .montaz-express-img img {
    width: 120px;
  }
  .montaz-express-title {
    font-size: 1.3rem;
  }
  .montaz-express-desc {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .montaz-express-block {
    min-height: 180px;
  }
  .montaz-express-content {
    padding: 18px 2vw 12px 2vw;
    gap: 18px;
  }
  .montaz-express-title {
    font-size: 1rem;
  }
  .montaz-express-desc {
    font-size: 0.95rem;
  }
  .montaz-express-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .montaz-express-img img {
    width: 80px;
  }
}
.montaz-service-block {
  width: 100%;
  background: #f6f8fa;
  padding: 54px 0 44px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.montaz-service-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 38px;
  text-align: center;
}
.montaz-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.montaz-service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(40,40,40,0.10);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.montaz-service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(40,40,40,0.16);
  transform: scale(1.02);
}
.montaz-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(40,40,40,0.10);
  margin-right: 8px;
}
.montaz-service-blue {
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
}
.montaz-service-orange {
  background: linear-gradient(90deg,#ff9800 0%,#ffb74d 100%);
}
.montaz-service-text {
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
}
.montaz-service-text strong {
  color: #1976d2;
  font-weight: 700;
}
@media (max-width: 900px) {
  .montaz-service-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .montaz-service-list {
    gap: 14px;
    max-width: 98vw;
  }
  .montaz-service-item {
    padding: 14px 10px;
    gap: 12px;
  }
  .montaz-service-icon {
    width: 38px;
    height: 38px;
    margin-right: 4px;
  }
  .montaz-service-text {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .montaz-service-block {
    padding: 24px 0 18px 0;
  }
  .montaz-service-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .montaz-service-list {
    gap: 8px;
  }
  .montaz-service-item {
    padding: 8px 4px;
    gap: 6px;
  }
  .montaz-service-icon {
    width: 28px;
    height: 28px;
  }
  .montaz-service-text {
    font-size: 0.95rem;
  }
}
.montaz-gallery-block {
  width: 100%;
  background: #fff;
  padding: 54px 0 44px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.montaz-gallery-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 38px;
  text-align: center;
}
.montaz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.montaz-gallery-item {
  background: #f6f8fa;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(40,40,40,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s;
}
.montaz-gallery-item:hover {
  box-shadow: 0 8px 32px 0 rgba(40,40,40,0.16);
  transform: scale(1.03);
}
.montaz-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: filter 0.18s;
}
.montaz-gallery-caption {
  font-size: 1.05rem;
  color: #1976d2;
  font-weight: 600;
  text-align: center;
  padding: 12px 8px 16px 8px;
  background: #fff;
  width: 100%;
  border-radius: 0 0 16px 16px;
}
.montaz-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,40,60,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.montaz-lightbox-content {
  background: #fff;
  border-radius: 18px;
  padding: 28px 18px 18px 18px;
  box-shadow: 0 4px 32px 0 rgba(40,40,40,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
#montaz-lightbox-img {
  max-width: 600px;
  max-height: 60vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.13);
}
#montaz-lightbox-caption {
  font-size: 1.13rem;
  color: #1976d2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}
#montaz-lightbox-close {
  background: linear-gradient(90deg,#ff9800 0%,#ffb74d 100%);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 10px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
}
#montaz-lightbox-close:hover {
  background: linear-gradient(90deg,#ffb74d 0%,#ff9800 100%);
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .montaz-gallery-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .montaz-gallery-grid {
    gap: 14px;
    max-width: 98vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .montaz-gallery-item img {
    height: 120px;
  }
}
@media (max-width: 600px) {
  .montaz-gallery-block {
    padding: 24px 0 18px 0;
  }
  .montaz-gallery-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .montaz-gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .montaz-gallery-item img {
    height: 80px;
  }
  .montaz-gallery-caption {
    font-size: 0.95rem;
    padding: 8px 4px 10px 4px;
  }
}
.montaz-steps-desc {
  font-size: 1.13rem;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .montaz-steps-desc {
    font-size: 1rem;
    margin-bottom: 18px;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .montaz-steps-desc {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
}
.montaz-steps-block {
  width: 100%;
  background: #f6f8fa;
  padding: 54px 0 44px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.montaz-steps-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 38px;
  text-align: center;
}
.montaz-steps-infograf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  min-height: 120px;
  margin: 0 auto;
}
.montaz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
  position: relative;
}
.montaz-step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(40,40,40,0.10);
}
.montaz-step-blue {
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
}
.montaz-step-orange {
  background: linear-gradient(90deg,#ff9800 0%,#ffb74d 100%);
}
.montaz-step-label {
  font-size: 1.08rem;
  color: #1976d2;
  font-weight: 600;
  text-align: center;
  min-width: 100px;
}
.montaz-step-line {
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg,#1976d2 0%,#ff9800 100%);
  border-radius: 4px;
  margin-bottom: 32px;
  margin-top: 22px;
}
@media (max-width: 900px) {
  .montaz-steps-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .montaz-steps-infograf {
    min-height: 80px;
    max-width: 98vw;
    gap: 0;
  }
  .montaz-step {
    min-width: 70px;
  }
  .montaz-step-circle {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .montaz-step-label {
    font-size: 0.95rem;
    min-width: 60px;
  }
  .montaz-step-line {
    width: 32px;
    height: 4px;
    margin-bottom: 18px;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .montaz-steps-block {
    padding: 24px 0 18px 0;
  }
  .montaz-steps-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .montaz-steps-infograf {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 0;
  }
  .montaz-step {
    flex-direction: row;
    align-items: center;
    min-width: 0;
    margin-bottom: 0;
  }
  .montaz-step-circle {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .montaz-step-label {
    min-width: 0;
    font-size: 0.95rem;
  }
  .montaz-step-line {
    width: 18px;
    height: 4px;
    margin: 0 0 0 0;
  }
}
.montaz-why-desc {
  font-size: 1.13rem;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .montaz-why-desc {
    font-size: 1rem;
    margin-bottom: 18px;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .montaz-why-desc {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
}
.montaz-why-block {
  width: 100%;
  background: #fff;
  padding: 54px 0 44px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.montaz-why-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 38px;
  text-align: center;
}
.montaz-why-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
}
.montaz-why-card {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(40,40,40,0.10);
  border-radius: 18px;
  padding: 32px 22px 28px 22px;
  min-width: 220px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.montaz-why-card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,40,40,0.16);
  transform: translateY(-4px) scale(1.03);
}
.montaz-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.montaz-why-text {
  font-size: 1.13rem;
  color: #222;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 900px) {
  .montaz-why-cards {
    gap: 18px;
    max-width: 98vw;
  }
  .montaz-why-card {
    min-width: 160px;
    max-width: 180px;
    padding: 22px 10px 18px 10px;
  }
  .montaz-why-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
}
@media (max-width: 600px) {
  .montaz-why-block {
    padding: 24px 0 18px 0;
  }
  .montaz-why-cards {
    gap: 10px;
  }
  .montaz-why-card {
    min-width: 120px;
    max-width: 98vw;
    padding: 12px 4px 10px 4px;
  }
  .montaz-why-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .montaz-why-text {
    font-size: 0.95rem;
  }
}
.montaz-hero-block {
  position: relative;
  min-height: 88vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.montaz-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/window-frame-options-1337.webp') center center/cover no-repeat;
  filter: brightness(0.97) blur(1.5px);
  z-index: 0;
}
.montaz-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 64px 32px 48px 32px;
}
.montaz-hero-img {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.montaz-hero-img img {
  width: 320px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(40,40,40,0.13);
  object-fit: cover;
}
.montaz-hero-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.montaz-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 10px;
  line-height: 1.13;
}
.montaz-hero-subtitle {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 18px;
  font-weight: 500;
}
.montaz-hero-btns {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.montaz-btn-orange {
  background: linear-gradient(90deg,#ff9800 0%,#ffb74d 100%);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 15px 38px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.14);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
}
.montaz-btn-orange:hover {
  background: linear-gradient(90deg,#ffb74d 0%,#ff9800 100%);
  transform: scale(1.04);
}
.montaz-btn-outline {
  background: transparent;
  color: #1976d2;
  font-size: 1.13rem;
  font-weight: 700;
  border: 2px solid #1976d2;
  border-radius: 28px;
  padding: 15px 38px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, color 0.18s, border 0.18s, transform 0.18s;
}
.montaz-btn-outline:hover {
  background: #e3eaf2;
  color: #1976d2;
  border-color: #1565c0;
  transform: scale(1.04);
}
.montaz-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: #fffde7;
  border-radius: 12px;
  padding: 8px 18px 8px 10px;
  box-shadow: 0 2px 8px 0 rgba(255,152,0,0.07);
}
.montaz-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.montaz-trust-text {
  color: #ff9800;
  font-size: 1.08rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .montaz-hero-content {
    flex-direction: column;
    gap: 28px;
    padding: 38px 8vw 28px 8vw;
    align-items: center;
    justify-content: center;
  }
  .montaz-hero-img {
    flex: 0 0 220px;
  }
  .montaz-hero-img img {
    width: 200px;
  }
  .montaz-hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .montaz-hero-block {
    min-height: 64vh;
  }
  .montaz-hero-content {
    padding: 18px 2vw 12px 2vw;
    gap: 18px;
  }
  .montaz-hero-title {
    font-size: 1.25rem;
  }
  .montaz-hero-subtitle {
    font-size: 1rem;
  }
  .montaz-btn-orange, .montaz-btn-outline {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .montaz-hero-img img {
    width: 120px;
  }
}
.aluminiowe-quickform-block {
  position: relative;
  min-height: 420px;
  width: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aluminiowe-quickform-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/aluminum-frame-windows-8603.webp') center center/cover no-repeat;
  filter: brightness(0.7) blur(2.5px);
  z-index: 0;
}
.aluminiowe-quickform {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 28px 38px 28px;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(40,40,40,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quickform-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1976d2;
  text-align: center;
  margin-bottom: 28px;
}
.quickform-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.quickform-fields input,
.quickform-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #e3eaf2;
  font-size: 1.08rem;
  background: #f6f8fa;
  color: #222;
  transition: border 0.18s;
}
.quickform-fields input:focus,
.quickform-fields textarea:focus {
  border-color: #1976d2;
  outline: none;
}
.quickform-fields textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 180px;
}
.quickform-progress {
  width: 100%;
  height: 8px;
  background: #e3eaf2;
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
}
.quickform-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
  border-radius: 6px;
  transition: width 0.4s cubic-bezier(.6,.2,.3,1);
}
.quickform-btn {
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 15px 44px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.14);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
  margin-top: 8px;
}
.quickform-btn:hover {
  background: linear-gradient(90deg,#4f8ad9 0%,#1976d2 100%);
  transform: scale(1.04);
}
.quickform-success {
  width: 100%;
  text-align: center;
  color: #388e3c;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 18px;
  background: #e3f6e3;
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 2px 8px 0 rgba(40,120,40,0.07);
}
@media (max-width: 600px) {
  .aluminiowe-quickform {
    padding: 22px 6px 18px 6px;
    max-width: 98vw;
  }
  .quickform-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
}
.aluminiowe-efficiency-block {
  width: 100%;
  background: #f6f8fa;
  padding: 54px 0 48px 0;
}
.aluminiowe-efficiency-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.aluminiowe-efficiency-chart {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 220px;
}
.efficiency-bar-label {
  font-size: 1.08rem;
  color: #1976d2;
  font-weight: 700;
  margin-bottom: 2px;
}
.efficiency-bar-bg {
  width: 100%;
  height: 32px;
  background: #e3eaf2;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.07);
}
.efficiency-bar {
  height: 100%;
  border-radius: 16px;
  width: 0;
  transition: width 1.2s cubic-bezier(.6,.2,.3,1);
}
.aluminiowe-bar {
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
}
.pcv-bar {
  background: linear-gradient(90deg,#388e3c 0%,#a5d6a7 100%);
}
.drewniane-bar {
  background: linear-gradient(90deg,#b8863b 0%,#a67c52 100%);
}
.aluminiowe-efficiency-desc {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 220px;
}
.efficiency-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 18px;
}
.efficiency-text {
  font-size: 1.08rem;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .aluminiowe-efficiency-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .aluminiowe-efficiency-desc {
    align-items: center;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .aluminiowe-efficiency-block {
    padding: 32px 0 24px 0;
  }
  .efficiency-bar-bg {
    height: 22px;
    margin-bottom: 4px;
  }
  .efficiency-bar-label {
    font-size: 0.97rem;
  }
  .efficiency-value {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .efficiency-text {
    font-size: 0.97rem;
  }
}
.aluminiowe-colors-desc {
  text-align: center;
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.aluminiowe-colors-block {
  width: 100%;
  background: #fff;
  padding: 54px 0 48px 0;
}
.aluminiowe-colors-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 38px;
}
.aluminiowe-colors-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.aluminiowe-colors-palette {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  justify-content: center;
}
.color-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #e3eaf2;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.09);
  cursor: pointer;
  transition: border 0.18s, transform 0.18s;
}
.color-dot:hover {
  border-color: #1976d2;
  transform: scale(1.08);
}
.aluminiowe-colors-photos {
  display: flex;
  gap: 22px;
  transition: transform 0.7s cubic-bezier(.6,.2,.3,1);
  will-change: transform;
}
.colors-photo {
  min-width: 260px;
  max-width: 260px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(40,40,40,0.07);
  background: #f6f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.22s, transform 0.18s;
}
.colors-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s cubic-bezier(.6,.2,.3,1);
}
.colors-photo:hover {
  box-shadow: 0 8px 32px 0 rgba(30,60,120,0.13);
  transform: scale(1.04);
}
.colors-photo:hover img {
  transform: scale(1.07);
}
.colors-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px 0 rgba(30,60,120,0.13);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.colors-carousel-btn.left {
  left: 0;
}
.colors-carousel-btn.right {
  right: 0;
}
.colors-carousel-btn:hover {
  background: #e3eaf2;
}
@media (max-width: 900px) {
  .aluminiowe-colors-photos {
    gap: 10px;
  }
  .colors-photo {
    min-width: 180px;
    max-width: 180px;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .aluminiowe-colors-block {
    padding: 32px 0 24px 0;
  }
  .aluminiowe-colors-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .aluminiowe-colors-palette {
    gap: 10px;
    margin-bottom: 18px;
  }
  .color-dot {
    width: 28px;
    height: 28px;
  }
  .colors-photo {
    min-width: 110px;
    max-width: 110px;
    height: 70px;
  }
}
.aluminiowe-compare-block {
  width: 100%;
  background: #f6f8fa;
  padding: 54px 0 48px 0;
}
.aluminiowe-compare-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 38px;
}
.aluminiowe-compare-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}
.aluminiowe-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(40,40,40,0.07);
  overflow: hidden;
  font-size: 1.08rem;
}
.aluminiowe-compare-table th,
.aluminiowe-compare-table td {
  padding: 18px 12px;
  text-align: center;
  border-bottom: 1.5px solid #e3eaf2;
  vertical-align: middle;
}
.aluminiowe-compare-table th {
  background: #f6f8fa;
  font-weight: 700;
  font-size: 1.13rem;
  color: #1976d2;
  border-bottom: 2px solid #dbe6f6;
}
.aluminiowe-compare-table th.aluminiowe-col {
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(30,60,120,0.09);
  transition: background 0.5s;
}
.aluminiowe-compare-table td.aluminiowe-col {
  background: linear-gradient(90deg,#e3eaf2 0%,#dbe6f6 100%);
  color: #1976d2;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(30,60,120,0.07);
  transition: background 0.5s;
}
.aluminiowe-compare-table td.compare-adv {
  color: #388e3c;
  font-weight: 700;
}
.aluminiowe-compare-table .compare-icon {
  font-size: 1.3rem;
  display: block;
  margin-top: 4px;
}
.aluminiowe-compare-table .compare-row-icon {
  font-size: 1.2rem;
  margin-right: 6px;
}
.aluminiowe-compare-table tr:last-child td,
.aluminiowe-compare-table tr:last-child th {
  border-bottom: none;
}
.aluminiowe-compare-table th.aluminiowe-col,
.aluminiowe-compare-table td.aluminiowe-col {
  animation: aluminioweColHighlight 2.2s cubic-bezier(.6,.2,.3,1);
}
@keyframes aluminioweColHighlight {
  0% { background: #fff; color: #1976d2; }
  20% { background: #e3eaf2; color: #1976d2; }
  60% { background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%); color: #fff; }
  100% { background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%); color: #fff; }
}
@media (max-width: 700px) {
  .aluminiowe-compare-table th,
  .aluminiowe-compare-table td {
    padding: 10px 4px;
    font-size: 0.97rem;
  }
  .aluminiowe-compare-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
}
.aluminiowe-gallery-desc {
  text-align: center;
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-final-block {
  background: #222a36;
  color: #fff;
  padding: 56px 0 48px 0;
  text-align: center;
  margin: 0 auto;
}

.aluminiowe-gallery-block {
  width: 100%;
  background: #fff;
  padding: 54px 0 48px 0;
}
.aluminiowe-gallery-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 38px;
}
.aluminiowe-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.aluminiowe-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(40,40,40,0.07);
  background: #f6f8fa;
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.18s;
}
.aluminiowe-gallery-item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.22s cubic-bezier(.6,.2,.3,1);
}
.aluminiowe-gallery-item:hover {
  box-shadow: 0 8px 32px 0 rgba(30,60,120,0.13);
  transform: scale(1.03);
}
.aluminiowe-gallery-item:hover img {
  transform: scale(1.07);
}
.aluminiowe-gallery-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,40,60,0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aluminiowe-gallery-lightbox-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 2px 32px 0 rgba(30,60,120,0.18);
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aluminiowe-gallery-lightbox-content img {
  max-width: 700px;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(40,40,40,0.13);
}
.aluminiowe-gallery-lightbox-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(30,60,120,0.13);
  transition: background 0.18s;
}
.aluminiowe-gallery-lightbox-close:hover {
  background: #4f8ad9;
}
@media (max-width: 900px) {
  .aluminiowe-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .aluminiowe-gallery-item img {
    height: 160px;
  }
}
@media (max-width: 600px) {
  .aluminiowe-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .aluminiowe-gallery-item img {
    height: 120px;
  }
}
.aluminiowe-advantages-block {
  width: 100%;
  background: #f6f8fa;
  padding: 56px 0 48px 0;
}
.aluminiowe-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.aluminiowe-adv-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(40,40,40,0.07);
  padding: 38px 22px 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  border: 1.5px solid #e3eaf2;
}
.aluminiowe-adv-card:hover {
  box-shadow: 0 6px 32px 0 rgba(30,60,120,0.13);
  transform: translateY(-6px) scale(1.03);
  border-color: #1976d2;
}
.aluminiowe-adv-card .adv-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aluminiowe-adv-card .adv-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
}
.aluminiowe-adv-card .adv-desc {
  font-size: 1rem;
  color: #444;
  text-align: center;
  line-height: 1.5;
}
.aluminiowe-adv-card svg {
  display: block;
  width: 44px;
  height: 44px;
}
@media (max-width: 900px) {
  .aluminiowe-advantages-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 22px;
  }
}
@media (max-width: 600px) {
  .aluminiowe-advantages-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
  }
  .aluminiowe-adv-card {
    padding: 28px 10px 22px 10px;
  }
}
.aluminiowe-hero-block {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.aluminiowe-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/aluminum-frame-windows-8603.webp') center center/cover no-repeat;
  filter: brightness(0.7) grayscale(0.1);
  z-index: 0;
}
.aluminiowe-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.6,.2,.3,1), transform 0.8s cubic-bezier(.6,.2,.3,1);
}
.aluminiowe-hero-block.loaded .aluminiowe-hero-content {
  opacity: 1;
  transform: translateY(0);
}
.aluminiowe-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 18px rgba(30,40,60,0.22);
  letter-spacing: 1px;
}
.aluminiowe-hero-desc {
  font-size: 1.25rem;
  color: #e3eaf2;
  text-align: center;
  margin-bottom: 38px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(30,40,60,0.13);
}
.aluminiowe-hero-btn {
  background: linear-gradient(90deg,#1976d2 0%,#4f8ad9 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 15px 44px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.14);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
  margin-top: 8px;
}
.aluminiowe-hero-btn:hover {
  background: linear-gradient(90deg,#4f8ad9 0%,#1976d2 100%);
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .aluminiowe-hero-content {
    padding: 32px 8px 24px 8px;
  }
  .aluminiowe-hero-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .aluminiowe-hero-desc {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .aluminiowe-hero-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}
.drewniane-cta-block {
  position: relative;
  min-height: 320px;
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drewniane-cta-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/wooden-frame-windows-3665.webp') center center/cover no-repeat;
  filter: brightness(0.7) blur(0.5px);
  z-index: 0;
}
.drewniane-cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.drewniane-cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
  text-shadow: 0 2px 18px rgba(30,20,10,0.22);
  letter-spacing: 1px;
}
.drewniane-cta-btn {
  background: linear-gradient(90deg,#b8863b 0%,#a67c52 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 16px 48px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.14);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
  margin-top: 8px;
}
.drewniane-cta-btn:hover {
  background: linear-gradient(90deg,#d4a95a 0%,#a67c52 100%);
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .drewniane-cta-content {
    padding: 32px 8px 24px 8px;
  }
  .drewniane-cta-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .drewniane-cta-btn {
    font-size: 1rem;
    padding: 12px 18px;
  }
}
.drewniane-parametry-block {
  background: #f7f3ee;
  padding: 56px 0 48px 0;
}
.drewniane-parametry-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}
.drewniane-parametry-title {
  font-size: 2rem;
  font-weight: 700;
  color: #6d4c2c;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.drewniane-parametry-table-wrap {
  overflow-x: auto;
}
.drewniane-parametry-table {
  width: 100%;
  border-collapse: collapse;
  background: #f7f3ee;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.08);
  border-radius: 18px;
  overflow: hidden;
  font-size: 1.08rem;
}
.drewniane-parametry-table th {
  background: #6d4c2c;
  color: #fff;
  font-weight: 600;
  padding: 16px 12px;
  border-bottom: 2px solid #a67c52;
  text-align: left;
  letter-spacing: 0.5px;
}
.drewniane-parametry-table td {
  background: #fbeedc;
  color: #6d4c2c;
  padding: 14px 12px;
  border-bottom: 1px solid #e0c9b0;
}
.drewniane-parametry-table tr:last-child td {
  border-bottom: none;
}
.drewniane-parametry-table tr {
  transition: background 0.18s;
}
.drewniane-parametry-table tr:hover td {
  background: #f3e2c7;
}
.drewniane-parametry-table th:first-child,
.drewniane-parametry-table td:first-child {
  border-left: none;
}
.drewniane-parametry-table th:last-child,
.drewniane-parametry-table td:last-child {
  border-right: none;
}
@media (max-width: 700px) {
  .drewniane-parametry-content {
    padding: 0 4px;
  }
  .drewniane-parametry-table th,
  .drewniane-parametry-table td {
    padding: 10px 6px;
    font-size: 0.98rem;
  }
}
.inspiracje-block {
  background: #f9f7f3;
  padding: 64px 0 48px 0;
}
.inspiracje-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.inspiracje-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #a67c52;
  text-align: center;
  margin-bottom: 38px;
  letter-spacing: 1px;
}
.inspiracje-gallery {
  column-count: 3;
  column-gap: 28px;
  width: 100%;
}
.inspiracje-item {
  break-inside: avoid;
  margin-bottom: 28px;
  background: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.inspiracje-item img {
  width: 100%;
  display: block;
  border: none;
  border-radius: 18px;
  transition: transform 0.22s, filter 0.22s;
}
.inspiracje-item:hover img {
  transform: scale(1.04) rotate(-1deg);
  filter: brightness(0.92);
}
.inspiracje-item:hover {
  box-shadow: 0 8px 32px 0 rgba(40,40,40,0.18);
  transform: translateY(-4px) scale(1.03);
}
.inspiracje-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(166,124,82,0.82);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,40,60,0.10);
  opacity: 0;
  transition: opacity 0.22s;
  pointer-events: none;
  z-index: 2;
}
.inspiracje-item:hover .inspiracje-caption {
  opacity: 1;
}
@media (max-width: 900px) {
  .inspiracje-gallery {
    column-count: 2;
    column-gap: 18px;
  }
}
@media (max-width: 600px) {
  .inspiracje-content {
    padding: 0 4px;
  }
  .inspiracje-gallery {
    column-count: 1;
    column-gap: 0;
  }
  .inspiracje-caption {
    font-size: 0.98rem;
    padding: 6px 12px;
  }
}
.drewno-warto-block {
  background: #f7f3ee;
  padding: 56px 0 48px 0;
}
.drewno-warto-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drewno-warto-title {
  font-size: 2rem;
  font-weight: 700;
  color: #a67c52;
  text-align: center;
  margin-bottom: 38px;
  letter-spacing: 1px;
}
.drewno-warto-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.drewno-warto-card {
  background: url('../images/wooden-frame-windows-3665.webp') center center/cover no-repeat, #a67c52;
  min-width: 220px;
  max-width: 260px;
  height: 120px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  position: relative;
  margin-bottom: 18px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.drewno-warto-card:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 32px 0 rgba(40,40,40,0.18);
}
.drewno-warto-label {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 12px rgba(30,40,60,0.18);
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .drewno-warto-cards {
    gap: 18px;
  }
  .drewno-warto-card {
    min-width: 160px;
    max-width: 100%;
    height: 100px;
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .drewno-warto-content {
    padding: 0 6px;
  }
  .drewno-warto-cards {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .drewno-warto-card {
    min-width: 0;
    width: 100%;
    height: 80px;
    padding: 0 4px;
  }
}
.drewniane-technologie-block {
  position: relative;
  min-height: 420px;
  background: transparent;
  margin: 0;
  padding: 0;
}
.drewniane-technologie-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/bathroom-window-models-6715.webp') center center/cover no-repeat;
  filter: brightness(0.65) blur(1px);
  z-index: 0;
}
.drewniane-technologie-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 32px 40px 32px;
  background: rgba(255,255,255,0.82);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(40,40,40,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drewniane-technologie-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  text-align: center;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(30,40,60,0.10);
}
.drewniane-technologie-desc {
  font-size: 1.15rem;
  color: #222;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.7;
}
.drewniane-technologie-icons {
  display: flex;
  gap: 38px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.drewniane-technologie-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}
.drewniane-technologie-icon svg {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.drewniane-technologie-label {
  font-size: 1.08rem;
  font-weight: 500;
  color: #1976d2;
  text-align: center;
}
@media (max-width: 900px) {
  .drewniane-technologie-content {
    padding: 32px 8px 24px 8px;
  }
  .drewniane-technologie-icons {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .drewniane-technologie-content {
    padding: 18px 2px 12px 2px;
  }
  .drewniane-technologie-icons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.drewniane-galeria-block {
  background: #fff;
  padding: 64px 0 48px 0;
}
.drewniane-galeria-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.drewniane-galeria-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #2d2d2d;
}
.drewniane-galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.drewniane-galeria-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(40,40,40,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  position: relative;
}
.drewniane-galeria-item:hover {
  box-shadow: 0 6px 32px 0 rgba(40,40,40,0.16);
}
.drewniane-galeria-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.drewniane-galeria-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.drewniane-galeria-img-wrap::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,40,40,0.0);
  transition: background 0.3s;
  z-index: 1;
}
.drewniane-galeria-item:hover .drewniane-galeria-img-wrap::after {
  background: rgba(40,40,40,0.32);
}
.drewniane-galeria-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #43a047;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, box-shadow 0.2s;
  z-index: 2;
  box-shadow: 0 2px 12px 0 rgba(40,40,40,0.12);
  cursor: pointer;
}
.drewniane-galeria-item:hover .drewniane-galeria-btn {
  opacity: 1;
  pointer-events: auto;
}
.drewniane-galeria-label {
  font-size: 1.18rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-top: 18px;
  margin-bottom: 6px;
  text-align: center;
}
.drewniane-galeria-desc {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 18px;
  padding: 0 10px;
}
@media (max-width: 900px) {
  .drewniane-galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .drewniane-galeria-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .drewniane-galeria-content {
    padding: 0 8px;
  }
}
.cta-final-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cta-final-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.cta-final-form {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.cta-final-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(30,40,60,0.10);
}
.cta-final-form input[type="email"]:focus {
  outline: 2px solid #1976d2;
}
.cta-final-btn {
  background: linear-gradient(90deg,#1976d2 60%,#43a047 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(25,118,210,0.10);
  transition: background 0.2s, transform 0.2s;
}
.cta-final-btn:hover {
  background: linear-gradient(90deg,#1565c0 60%,#388e3c 100%);
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .cta-final-title {
    font-size: 1.2rem;
  }
  .cta-final-form {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .cta-final-form input[type="email"] {
    max-width: 100%;
    min-width: 0;
    padding: 10px 12px;
    font-size: 1rem;
  }
  .cta-final-btn {
    padding: 12px 0;
    font-size: 1rem;
  }
}
.jak-dzialamy-block {
  background: #f7f9fc;
  border-radius: 24px;
  margin: 48px auto 32px auto;
  max-width: 900px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.08);
  padding: 32px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.jak-dzialamy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 32px;
  text-align: center;
}
.jak-dzialamy-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  max-width: 800px;
  margin-bottom: 0;
  position: relative;
}
.jak-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,40,60,0.07);
  padding: 24px 18px 18px 18px;
  min-width: 140px;
  z-index: 1;
}
.jak-step-num {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  margin-top: -8px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30,40,60,0.10);
}
.jak-step-accent1 {
  background: #e3f2fd;
  color: #1976d2;
}
.jak-step-accent2 {
  background: #e8f5e9;
  color: #43a047;
}
.jak-step-accent3 {
  background: #fffde7;
  color: #fbc02d;
}
.jak-step-accent4 {
  background: #ffebee;
  color: #d32f2f;
}
.jak-step-icon {
  margin-bottom: 4px;
}
.jak-step-label {
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  text-align: center;
}
.jak-dzialamy-steps:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 6px;
  background: linear-gradient(90deg,#1976d2 0%,#43a047 33%,#fbc02d 66%,#d32f2f 100%);
  border-radius: 3px;
  z-index: 0;
  transform: translateY(-50%);
}
.jak-step {
  z-index: 1;
}
@media (max-width: 900px) {
  .jak-dzialamy-steps {
    gap: 18px;
    max-width: 98vw;
  }
  .jak-step {
    min-width: 100px;
    padding: 16px 8px 12px 8px;
  }
}
@media (max-width: 700px) {
  .jak-dzialamy-steps {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .jak-dzialamy-steps:before {
    display: none;
  }
}
.promocje-block {
  margin: 48px 0;
  padding: 32px 0;
  background: #fffbe7;
  text-align: center;
}
.promocje-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #d32f2f;
  letter-spacing: 1px;
}
.promocje-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.promocje-item {
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(.23,1.01,.32,1), box-shadow 0.3s;
  opacity: 0;
  transform: translateY(60px) scale(0.96);
      justify-content: center;
}
.promocje-yellow {
  background: linear-gradient(135deg, #ffe600 80%, #fffbe7 100%);
  color: #d32f2f;
}
.promocje-red {
  background: linear-gradient(135deg, #ff5252 80%, #fffbe7 100%);
  color: #fff;
}
.promocje-discount {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.promocje-desc {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}
.promocje-item.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 8px 32px rgba(255, 230, 0, 0.18), 0 2px 8px rgba(0,0,0,0.10);
}
@media (max-width: 700px) {
  .promocje-list {
    flex-direction: column;
    gap: 24px;
  }
  .promocje-item {
    min-width: 0;
    max-width: 100%;
    padding: 24px 12px;
  }
  .promocje-discount {
    font-size: 2.2rem;
  }
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.historia-block {
  max-width: 980px;
  margin: 64px auto 48px auto;
  padding: 0 16px;
}
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.historia-img {
  justify-self: end;
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,40,60,0.10);
}
.historia-img img {
  width: 100%;
  height: auto;
  display: block;
}
.historia-text {
  justify-self: start;
  max-width: 480px;
}
.historia-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 18px;
}
.historia-desc {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.7;
}

.cookie-policy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 32px 12px 24px 12px;
}
.cookie-policy-section h1 {
  text-align: center;
  margin-bottom: 24px;
}
.cookie-policy-text {
  max-width: 700px;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #fff;
  margin: 0 auto;
}
.cookie-policy-text ul {
  list-style: disc inside;
  margin: 18px 0 18px 0;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}
.cookie-policy-text li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}
.cookie-policy-text a {
  color: #1976d2;
  text-decoration: underline;
}

.privacy-policy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 32px 12px 24px 12px;
}
.privacy-policy-section h1 {
  text-align: center;
  margin-bottom: 24px;
}
.privacy-policy-text {
  max-width: 700px;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #222;
  margin: 0 auto;
}
.privacy-policy-text ul {
  list-style: disc inside;
  margin: 18px 0 18px 0;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}
.privacy-policy-text li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}
.privacy-policy-text a {
  color: #1976d2;
  text-decoration: underline;
}

.terms-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 32px 12px 24px 12px;
}
.terms-section h1 {
  text-align: center;
  margin-bottom: 24px;
}
.terms-text {
  max-width: 700px;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #222;
  margin: 0 auto;
}
.terms-text h2 {
  font-size: 1.15rem;
  color: #1976d2;
  margin: 28px 0 12px 0;
  text-align: center;
}
.terms-text ul {
  list-style: disc inside;
  margin: 18px 0 18px 0;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}
.terms-text li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}
.terms-text a {
  color: #1976d2;
  text-decoration: underline;
}

.historia-slide-left, .historia-slide-right {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(.77,.2,.05,1), transform 0.8s cubic-bezier(.77,.2,.05,1);
}
.historia-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
  animation: historia-slide-in-left 0.8s cubic-bezier(.77,.2,.05,1) forwards;
}
.historia-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
  animation: historia-slide-in-right 0.8s cubic-bezier(.77,.2,.05,1) forwards;
}
@keyframes historia-slide-in-left {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes historia-slide-in-right {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 900px) {
  .historia-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .historia-img, .historia-text {
    justify-self: center;
    max-width: 100%;
  }
}
.hero-kim-jestesmy {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #eaf3fa;
}
.hero-kim-jestesmy .hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/panoramic-living-room-windows-5786.webp') center center/cover no-repeat;
  filter: brightness(0.7) saturate(1.1);
  z-index: 1;
}
.hero-kim-jestesmy .hero-content {

  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;

  transition: opacity 0.8s cubic-bezier(.77,.2,.05,1), transform 0.8s cubic-bezier(.77,.2,.05,1);
}
.hero-kim-jestesmy.visible .hero-content {
  opacity: 1;

}
.hero-kim-jestesmy .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero-kim-jestesmy .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-kim-jestesmy .hero-btn {
  display: inline-block;
  padding: 0.9em 2.2em;
  background: #1976d2;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(25,118,210,0.12);
  text-decoration: none;
  transition: background 0.2s;
}
.hero-kim-jestesmy .hero-btn:hover {
  background: #1456a0;
}
@media (max-width: 700px) {
  .hero-kim-jestesmy {
    min-height: 40vh;
  }
  .hero-kim-jestesmy .hero-title {
    font-size: 2rem;
  }
  .hero-kim-jestesmy .hero-subtitle {
    font-size: 1rem;
  }
}
.galeria-block {
  margin: 48px auto 32px auto;
  max-width: 900px;
  background: #f7f9fc;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.08);
  padding: 32px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.galeria-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
  text-align: center;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
  width: 100%;
  max-width: 820px;
  margin-bottom: 12px;
}
.galeria-item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,40,60,0.10);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.galeria-item:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(30,40,60,0.18);
  z-index: 2;
}
.galeria-item:hover img {
  transform: scale(1.08);
}
.galeria-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,40,60,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.galeria-lightbox-content {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 8px 32px rgba(30,40,60,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.galeria-lightbox-content img {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(30,40,60,0.10);
}
#close-galeria-lightbox {
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1976d2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
#close-galeria-lightbox:hover {
  background: #1565c0;
}
@media (max-width: 900px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .galeria-block {
    max-width: 98vw;
    padding: 18px 0 12px 0;
  }
  .galeria-title {
    font-size: 1.2rem;
  }
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 120px;
    gap: 8px;
  }
}
.opinie-block {
  background: #fff;
  border-radius: 24px;
  margin: 48px auto 32px auto;
  max-width: 900px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.08);
  padding: 32px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opinie-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
  text-align: center;
}
.opinie-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 700px;
}
.opinie-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 18px 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(30,40,60,0.06);
}
.opinie-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30,40,60,0.10);
  flex-shrink: 0;
}
.opinie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opinie-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.opinie-name {
  font-weight: 600;
  color: #1976d2;
  font-size: 1.1rem;
}
.opinie-stars {
  color: #fbc02d;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.star {
  font-family: inherit;
  font-size: 1.2em;
}
.opinie-text {
  font-size: 1rem;
  color: #222;
  background: none;
  border-radius: 8px;
  padding: 0;
  box-shadow: none;
}
@media (max-width: 900px) {
  .opinie-list {
    grid-template-columns: 1fr;
    max-width: 98vw;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .opinie-block {
    max-width: 98vw;
    padding: 18px 0 12px 0;
  }
  .opinie-title {
    font-size: 1.2rem;
  }
  .opinie-photo {
    width: 44px;
    height: 44px;
  }
  .opinie-item {
    padding: 10px 6px;
    border-radius: 10px;
  }
}
.dlaczego-nas-block {
  background: #f7f9fc;
  border-radius: 24px;
  margin: 48px auto 32px auto;
  max-width: 900px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dlaczego-nas-bg {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  width: 100%;
  min-height: 320px;
}
.dlaczego-nas-img {
  width: 40%;
  min-width: 220px;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 2px 12px rgba(30,40,60,0.10);
}
.dlaczego-nas-content {
  width: 60%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dlaczego-nas-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
}
.dlaczego-nas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dlaczego-nas-list li {
  font-size: 1.15rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 1px 6px rgba(30,40,60,0.06);
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
@media (max-width: 900px) {
  .dlaczego-nas-bg {
    flex-direction: column;
    min-height: 0;
  }
  .dlaczego-nas-img {
    width: 100%;
    min-width: 0;
    height: 180px;
    border-radius: 24px 24px 0 0;
  }
  .dlaczego-nas-content {
    width: 100%;
    padding: 24px 12px;
  }
}
.kalkulator-block {
  position: relative;
  margin: 48px auto 32px auto;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(30,40,60,0.12);
}
.kalkulator-bg {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
      padding: 50px 0;
}
.kalkulator-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.kalkulator-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,40,60,0.55);
  z-index: 2;
}
.kalkulator-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px;
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,40,60,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kalkulator-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
  text-align: center;
}
.kalkulator-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kalkulator-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kalkulator-field label {
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
  display: block;
}
.kalkulator-field input,
.kalkulator-field select {
  width: -webkit-fill-available;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #b0bec5;
  font-size: 1rem;
  background: #f7f9fc;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.kalkulator-field input:focus,
.kalkulator-field select:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px #e3f2fd;
  outline: none;
}
.kalkulator-btn {
  width: 100%;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,#1976d2 60%,#43a047 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30,40,60,0.10);
  transition: background 0.3s, transform 0.2s;
}
.kalkulator-btn:hover {
  background: linear-gradient(90deg,#1565c0 60%,#388e3c 100%);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 600px) {
  .kalkulator-block {
    max-width: 98vw;
    margin: 24px auto;
  }
  .kalkulator-bg {
    height: 320px;
  }
  .kalkulator-content {
    padding: 18px 8px;
    max-width: 98vw;
  }
  .kalkulator-title {
    font-size: 1.2rem;
  }
}
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #222;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
nav ul li {
  margin: 0 10px;
}
nav ul li a {
  text-decoration: none;
  color: #222;
  padding: 10px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
nav ul li a:hover {
  background: #e3e3e3;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  background: #1976d2;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.btn:hover {
  background: #1565c0;
}
footer {
  text-align: center;
  padding: 20px 0;
  background: #fff;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #888;
}
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    padding: 40px 10px;
  }
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
  border-radius: 0 0 18px 18px;
  min-height: 72px;
}
.logo-container {
  display: flex;
  align-items: center;
}
.site-logo {
  height: 48px;
  width: auto;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
  border-radius: 10px;
  transition: transform 0.2s;
}
.site-logo:hover {
  transform: scale(1.04) rotate(-2deg);
}
.site-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1976d2;
  text-decoration: none;
  margin-left: 16px;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.site-name:hover {
  color: #1565c0;
}
nav {
  position: relative;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 8px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #1976d2;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.nav-list li {
  margin: 0 10px;
}
.nav-list li a {
  text-decoration: none;
  color: #222;
  padding: 10px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.nav-list li a:hover,.nav-list li a.active {
  background: #e3f2fd;
  color: #1976d2;
}
.cart-icon {
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 2px;
}
@media (max-width: 900px) {
  .header-bar {
    flex-direction: column;
    padding: 0 10px;
    min-height: 0;
  }
  .logo-container {
    margin-bottom: 8px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    width: 300px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
    border-radius: 0 0 18px 18px;
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list li {
    margin: 8px 0;
    text-align: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  background: #f7f7f7;
  padding: 40px 20px 20px 20px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 12px rgba(25, 118, 210, 0.05);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h3 {
  margin-bottom: 8px;
  color: #1976d2;
  font-size: 1.1rem;
}
.footer-contact,
.footer-nav,
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li,
.footer-nav li,
.footer-info li {
  margin-bottom: 6px;
  font-size: 0.98rem;
}
.footer-nav a,
.footer-info a {
  color: #1976d2;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-info a:hover {
  color: #1565c0;
  text-decoration: underline;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.newsletter-form button {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #1565c0;
}
.footer-copyright {
  text-align: center;
  padding: 18px 0 8px 0;
  font-size: 0.95rem;
  color: #888;
  background: #fff;
  border-radius: 0 0 18px 18px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 28px 8px 8px 8px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 4px 4px 4px;
  }
}

.newsletter-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25, 118, 210, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.cookie-policy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(33, 33, 33, 0.97);
  color: #fff;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
}
.cookie-policy-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.cookie-policy-text {
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-policy-text a {
  color: #90caf9;
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-policy-text a:hover {
  color: #1976d2;
}
.cookie-policy-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-primary {
  background: #1976d2;
  color: #fff;
}
.cookie-btn-primary:hover {
  background: #1565c0;
}
.cookie-btn-secondary {
  background: #fff;
  color: #1976d2;
  border: 1px solid #1976d2;
}
.cookie-btn-secondary:hover {
  background: #e3f2fd;
}
@media (max-width: 700px) {
  .cookie-policy-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 10px;
  }
  .cookie-policy-actions {
    justify-content: flex-end;
  }
}
.newsletter-popup-content {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.12);
  text-align: center;
}
.newsletter-popup-content h4 {
  margin-bottom: 12px;
  color: #1976d2;
}
.newsletter-popup-content button {
  margin-top: 18px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-popup-content button:hover {
  background: #1565c0;
}

.hero-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 420px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.08);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.hero-banner:hover .hero-img {
  transform: scale(1.04) translateY(-8px);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(25,118,210,0.45) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 600px;
}
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.14);
}
.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.btn-primary {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(25,118,210,0.10);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: #1565c0;
  transform: scale(1.04);
}
.btn-secondary {
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(25,118,210,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: #e3f2fd;
  color: #1565c0;
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .hero-img {
    
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
}

.features-block {
  background: #fff;
  padding: 48px 0 32px 0;
  margin: 0 auto;
  width: 100%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-item {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.06);
  padding: 32px 18px 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
}
.feature-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.feature-item p {
  font-size: 0.98rem;
  color: #444;
  margin: 0;
}
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-item {
    padding: 24px 8px 16px 8px;
  }
}

.oferta-skrocie {
  background: #fff;
  padding: 48px 0 32px 0;
  width: 100%;
  margin: 0 auto;
}
.oferta-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 36px;
  color: #1976d2;
}
.oferta-desc {
  text-align: center;
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.oferta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.oferta-card {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.07);
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.oferta-card:hover {
  box-shadow: 0 6px 24px rgba(25,118,210,0.13);
}
.oferta-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.oferta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s, transform 0.3s;
}
.oferta-card:hover .oferta-img {
  filter: brightness(0.65) blur(1px);
  transform: scale(1.04);
}
.oferta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(25,118,210,0.18);
}
.oferta-card:hover .oferta-overlay {
  opacity: 1;
}
.oferta-btn {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(25,118,210,0.10);
  transition: background 0.2s, transform 0.2s;
}
.oferta-btn:hover {
  background: #1565c0;
  transform: scale(1.04);
}
.oferta-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 18px 0 12px 0;
  color: #222;
}
.oferta-card-desc {
  font-size: 0.98rem;
  color: #444;
  margin: 0 0 18px 0;
  padding: 0 10px;
}
@media (max-width: 900px) {
  .oferta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .oferta-img-wrap {
    height: 160px;
  }
}

.ekologiczny-block {
  position: relative;
  min-height: 340px;
  width: 100%;
  margin: 64px 0 48px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ekologiczny-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/decorative-glass-windows-8251.webp') center center/cover no-repeat;
  filter: brightness(0.7) saturate(1.1);
  z-index: 1;
  will-change: transform;
}
.ekologiczny-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.82);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.10);
  padding: 48px 32px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.ekologiczny-title {
  font-size: 2rem;
  font-weight: 700;
  color: #43a047;
  margin-bottom: 18px;
}
.ekologiczny-desc {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .ekologiczny-content {
    padding: 24px 10px;
    max-width: 98vw;
  }
  .ekologiczny-title {
    font-size: 1.2rem;
  }
  .ekologiczny-block {
    min-height: 180px;
    margin: 32px 0 24px 0;
  }
}
.misja-block {
  max-width: 980px;
  margin: 64px auto 48px auto;
  padding: 0 16px;
  text-align: center;
}
.misja-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 38px;
}
.misja-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  justify-items: center;
  align-items: start;
}
.misja-item {
  background: #f7f9fc;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,40,60,0.07);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.misja-icon {
  margin-bottom: 18px;
  transition: transform 0.25s, filter 0.25s;
  will-change: transform, filter;
}
.misja-item:hover .misja-icon {
  transform: scale(1.18);
  filter: brightness(1.15) drop-shadow(0 2px 12px rgba(25,118,210,0.10));
}
.misja-label {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.misja-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .misja-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .misja-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .misja-item {
    padding: 24px 10px 18px 10px;
  }
}

.partnerzy-block {
  max-width: 980px;
  margin: 56px auto 48px auto;
  padding: 0 16px;
  text-align: center;
}
.partnerzy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 38px;
}
.partnerzy-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #1976d2 #eaf3fa;
  padding-bottom: 8px;
}
.partnerzy-list {
  display: flex;
  gap: 48px;
  align-items: center;
  min-width: 600px;
  width: max-content;
  padding: 12px 0;
  scroll-behavior: smooth;
}
.partner-logo {
  flex: 0 0 auto;
  width: 120px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.7;
  transition: filter 0.4s, opacity 0.4s;
  cursor: pointer;
}
.partner-logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  transition: filter 0.4s;
}
.partner-logo:hover {
  filter: none;
  opacity: 1;
}
.partner-logo:hover img {
  filter: drop-shadow(0 2px 12px #1976d2);
}
@media (max-width: 900px) {
  .partnerzy-list {
    gap: 24px;
    min-width: 400px;
  }
  .partner-logo {
    width: 90px;
    height: 48px;
  }
}
@media (max-width: 600px) {
  .partnerzy-title {
    font-size: 1.2rem;
  }
  .partnerzy-list {
    gap: 16px;
    min-width: 260px;
  }
  .partner-logo {
    width: 64px;
    height: 36px;
  }
}

.geografia-block {
  max-width: 980px;
  margin: 64px auto 48px auto;
  padding: 0 16px;
  text-align: center;
}
.geografia-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 18px;
}
.geografia-desc {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 32px;
}
.geografia-map-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.geografia-map {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.10);
  background: #f7f9fc;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.geografia-map:active,
.geografia-map.zoomed {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
}
.region {
  transition: opacity 0.2s, filter 0.2s;
}
.region:hover {
  opacity: 1 !important;
  filter: brightness(1.15) drop-shadow(0 2px 12px #1976d2);
}
.geografia-popup {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,40,60,0.12);
  padding: 32px 24px;
  z-index: 10;
  min-width: 260px;
  max-width: 90vw;
  text-align: left;
}
.geografia-popup-content h3 {
  color: #1976d2;
  margin-bottom: 12px;
}
.geografia-popup-content p {
  color: #222;
  margin-bottom: 18px;
}
.geografia-popup-content button {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.geografia-popup-content button:hover {
  background: #1565c0;
}
@media (max-width: 700px) {
  .geografia-block {
    margin: 32px 0 24px 0;
  }
  .geografia-title {
    font-size: 1.2rem;
  }
  .geografia-map-wrap {
    max-width: 98vw;
  }
}
.cta-block {
  position: relative;
  background: #e3f2fd;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 56px 0 0 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/panoramic-living-room-windows-5786.webp') center/cover no-repeat;
  opacity: 0.45;
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.cta-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.cta-btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: #1976d2;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.18);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  animation: cta-pulse 1.6s infinite;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1565c0;
  box-shadow: 0 8px 32px rgba(25,118,210,0.28);
}
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(25,118,210,0.25); }
  70% { box-shadow: 0 0 0 16px rgba(25,118,210,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(25,118,210,0.0); }
}
@media (max-width: 700px) {
  .cta-title { font-size: 1.2rem; }
  .cta-btn { padding: 14px 24px; font-size: 1rem; }
  .cta-block { min-height: 220px; }
}

.oferta-hero-block {
  position: relative;
  min-height: 340px;
  background: #f5f8fd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 48px;
}
.oferta-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/panoramic-living-room-windows-5786.webp') center/cover no-repeat;
  opacity: 0.38;
  z-index: 1;
}
.oferta-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 48px 16px 32px 16px;
}
.oferta-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.oferta-hero-desc {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.oferta-hero-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: #1976d2;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.18);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  animation: oferta-cta-pulse 1.6s infinite;
}
.oferta-hero-btn:hover, .oferta-hero-btn:focus {
  background: #1565c0;
  box-shadow: 0 8px 32px rgba(25,118,210,0.28);
}
@keyframes oferta-cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(25,118,210,0.25); }
  70% { box-shadow: 0 0 0 16px rgba(25,118,210,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(25,118,210,0.0); }
}
@media (max-width: 700px) {
  .oferta-hero-title { font-size: 1.3rem; }
  .oferta-hero-desc { font-size: 1rem; }
  .oferta-hero-btn { padding: 12px 24px; font-size: 1rem; }
  .oferta-hero-block { min-height: 200px; }
}

.oferta-pcv-block {
  background: #fff;
  padding: 48px 0 32px 0;
  margin-bottom: 32px;
}
.oferta-pcv-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.oferta-pcv-img {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oferta-pcv-img img {
  width: 340px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(25,118,210,0.13);
  border: 4px solid #e3f2fd;
  background: #fff;
}
.oferta-pcv-text {
  flex: 1 1 340px;
  min-width: 260px;
}
.oferta-pcv-title {
  font-size: 2rem;
  font-weight: 700;
  color: #43a047;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.oferta-pcv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.oferta-pcv-desc {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 18px;
}
.oferta-pcv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.oferta-pcv-list li {
  font-size: 1.08rem;
  color: #1976d2;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .oferta-pcv-grid { flex-direction: column; gap: 24px; }
  .oferta-pcv-img img { width: 100%; max-width: 340px; }
}
@media (max-width: 600px) {
  .oferta-pcv-title { font-size: 1.2rem; }
  .oferta-pcv-desc { font-size: 1rem; }
  .oferta-pcv-block { padding: 24px 0 16px 0; }
}

.oferta-drewniane-block {
  background: #fff;
  padding: 48px 0 32px 0;
  margin-bottom: 32px;
}
.oferta-drewniane-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.oferta-drewniane-img {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oferta-drewniane-img img {
  width: 340px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(121,85,72,0.13);
  border: 4px solid #ffe0b2;
  background: #fff;
}
.oferta-drewniane-text {
  flex: 1 1 340px;
  min-width: 260px;
}
.oferta-drewniane-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8d6e63;
  margin-bottom: 18px;
}
.oferta-drewniane-cols {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.oferta-drewniane-col {
  flex: 1 1 180px;
  min-width: 180px;
}
.oferta-drewniane-sub {
  font-size: 1.08rem;
  font-weight: 600;
  color: #6d4c41;
  margin-bottom: 10px;
}
.oferta-drewniane-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.oferta-drewniane-list li {
  font-size: 1.05rem;
  color: #1976d2;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.oferta-drewniane-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  background: #8d6e63;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(141,110,99,0.18);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  animation: drewniane-cta-pulse 1.6s infinite;
}
.oferta-drewniane-btn:hover, .oferta-drewniane-btn:focus {
  background: #6d4c41;
  box-shadow: 0 8px 32px rgba(141,110,99,0.28);
}
@keyframes drewniane-cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(141,110,99,0.25); }
  70% { box-shadow: 0 0 0 16px rgba(141,110,99,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(141,110,99,0.0); }
}
@media (max-width: 900px) {
  .oferta-drewniane-grid { flex-direction: column; gap: 24px; }
  .oferta-drewniane-img img { width: 100%; max-width: 340px; }
  .oferta-drewniane-cols { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .oferta-drewniane-title { font-size: 1.2rem; }
  .oferta-drewniane-block { padding: 24px 0 16px 0; }
}

.oferta-aluminiowe-block {
  background: #eceff1;
  padding: 56px 0 40px 0;
  margin-bottom: 32px;
}
.oferta-aluminiowe-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oferta-aluminiowe-wrap {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33,33,33,0.07);
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 32px 32px 32px;
  flex-wrap: wrap;
}
.oferta-aluminiowe-img {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oferta-aluminiowe-img img {
  width: 340px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(33,33,33,0.10);
  background: #fff;
}
.oferta-aluminiowe-content {
  flex: 1 1 340px;
  min-width: 260px;
  text-align: left;
}
.oferta-aluminiowe-title {
  font-size: 2rem;
  font-weight: 700;
  color: #263238;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.oferta-aluminiowe-desc {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .oferta-aluminiowe-wrap { flex-direction: column; gap: 24px; padding: 18px; }
  .oferta-aluminiowe-img img { width: 100%; max-width: 340px; }
}
@media (max-width: 600px) {
  .oferta-aluminiowe-title { font-size: 1.2rem; }
  .oferta-aluminiowe-block { padding: 24px 0 16px 0; }
}

.oferta-rolety-block {
  position: relative;
  background: #f5f8fd;
  min-height: 320px;
  margin-bottom: 32px;
  overflow: hidden;
}
.oferta-rolety-bg {
  position: absolute;
  inset: 0;
  background: url('../images/sliding-windows-sale-1024.webp') center/cover no-repeat;
  opacity: 0.22;
  z-index: 1;
}
.oferta-rolety-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 16px 32px 16px;
}
.oferta-rolety-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.oferta-rolety-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.oferta-rolety-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.10);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.oferta-rolety-icon {
  margin-bottom: 18px;
}
.oferta-rolety-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 10px;
}
.oferta-rolety-desc {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .oferta-rolety-grid { flex-direction: column; gap: 18px; }
  .oferta-rolety-item { max-width: 100%; }
}
@media (max-width: 600px) {
  .oferta-rolety-title { font-size: 1.2rem; }
  .oferta-rolety-block { min-height: 180px; padding: 0; }
  .oferta-rolety-content { padding: 24px 4px 12px 4px; }
}

.oferta-parapety-block {
  background: #fff;
  padding: 48px 0 32px 0;
  margin-bottom: 32px;
  text-align: center;
}
.oferta-parapety-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 32px;
}
.oferta-parapety-photos {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.oferta-parapety-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.oferta-parapety-photo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(25,118,210,0.10);
  border: 4px solid #e3f2fd;
  background: #fff;
}
.oferta-parapety-label {
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 500;
  color: #1976d2;
}
.oferta-parapety-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.oferta-parapety-tag {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 7px 22px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.07);
}
.oferta-parapety-desc {
  font-size: 1.08rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto 0 auto;
}
@media (max-width: 900px) {
  .oferta-parapety-photos { gap: 18px; }
  .oferta-parapety-photo img { width: 80px; height: 80px; }
}
@media (max-width: 600px) {
  .oferta-parapety-title { font-size: 1.2rem; }
  .oferta-parapety-block { padding: 24px 0 16px 0; }
}

.oferta-montaz-block {
  background: #e3f2fd;
  padding: 48px 0 32px 0;
  margin-bottom: 32px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.10);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.oferta-montaz-img {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}
.oferta-montaz-img img {
  width: 320px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(25,118,210,0.13);
  border: 4px solid #fff;
  background: #fff;
}
.oferta-montaz-content {
  flex: 2 1 340px;
  min-width: 260px;
  padding: 0 24px;
}
.oferta-montaz-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 18px;
}
.oferta-montaz-desc {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 18px;
}
.oferta-montaz-steps {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.oferta-montaz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
}
.oferta-montaz-step-icon {
  margin-bottom: 10px;
}
.oferta-montaz-step-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1976d2;
}
@media (max-width: 900px) {
  .oferta-montaz-block { flex-direction: column; padding: 24px 0 16px 0; }
  .oferta-montaz-img img { width: 100%; max-width: 320px; }
  .oferta-montaz-content { padding: 0 8px; }
  .oferta-montaz-steps { gap: 18px; justify-content: center; }
}
@media (max-width: 600px) {
  .oferta-montaz-title { font-size: 1.2rem; }
  .oferta-montaz-block { padding: 12px 0 8px 0; }
  .oferta-montaz-step-label { font-size: 1rem; }
}

.oferta-cta-block {
  background: #23272b;
  padding: 64px 0 56px 0;
  text-align: center;
  margin-bottom: 0;
}
.oferta-cta-content {
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}
.oferta-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.oferta-cta-desc {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 32px;
}
.oferta-cta-icons {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.oferta-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1976d2;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.18);
  margin: 0 8px;
}
.oferta-cta-icon svg {
  width: 32px;
  height: 32px;
}
.oferta-cta-btn {
  display: inline-block;
  padding: 22px 64px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #23272b;
  background: #fff;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(255,255,255,0.18);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  animation: oferta-cta-pulse-dark 1.6s infinite;
}
.oferta-cta-btn:hover, .oferta-cta-btn:focus {
  background: #1976d2;
  color: #fff;
  box-shadow: 0 8px 32px rgba(25,118,210,0.28);
}
@keyframes oferta-cta-pulse-dark {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  70% { box-shadow: 0 0 0 24px rgba(255,255,255,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.0); }
}
@media (max-width: 700px) {
  .oferta-cta-title { font-size: 1.2rem; }
  .oferta-cta-btn { padding: 14px 24px; font-size: 1rem; }
  .oferta-cta-block { padding: 32px 0 24px 0; }
  .oferta-cta-icons { gap: 12px; }
  .oferta-cta-icon { width: 40px; height: 40px; }
  .oferta-cta-icon svg { width: 22px; height: 22px; }
}

.pcv-hero-block {
  position: relative;
  background: #f5f8fd;
  min-height: 420px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcv-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e3f2fd 0%, #f5f8fd 100%);
  opacity: 0.7;
  z-index: 1;
}
.pcv-hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
  padding: 48px 24px 32px 24px;
}
.pcv-hero-img {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcv-hero-img img {
  width: 420px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(67,160,71,0.13);
  border: 6px solid #fff;
  background: #fff;
}
.pcv-hero-content {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pcv-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pcv-hero-desc {
  font-size: 1.18rem;
  color: #333;
  margin-bottom: 32px;
  max-width: 480px;
}
.pcv-hero-btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: #43a047;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(67,160,71,0.18);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  animation: pcv-cta-pulse 1.6s infinite;
  margin-bottom: 18px;
}
.pcv-hero-btn:hover, .pcv-hero-btn:focus {
  background: #388e3c;
  box-shadow: 0 8px 32px rgba(67,160,71,0.28);
}
@keyframes pcv-cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(67,160,71,0.25); }
  70% { box-shadow: 0 0 0 16px rgba(67,160,71,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(67,160,71,0.0); }
}
.pcv-hero-scroll {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.pcv-hero-scroll svg {
  display: block;
  transition: transform 0.2s;
}
.pcv-hero-scroll:hover svg, .pcv-hero-scroll:focus svg {
  transform: translateY(4px) scale(1.1);
}
@media (max-width: 900px) {
  .pcv-hero-grid { flex-direction: column; gap: 24px; padding: 24px 8px 16px 8px; }
  .pcv-hero-img img { width: 100%; max-width: 420px; }
  .pcv-hero-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .pcv-hero-title { font-size: 1.1rem; }
  .pcv-hero-block { min-height: 220px; padding: 12px 0 8px 0; }
  .pcv-hero-btn { padding: 12px 24px; font-size: 1rem; }
}

.pcv-zalety-block {
  background: #fff;
  padding: 48px 0 32px 0;
  margin-bottom: 32px;
  text-align: center;
}
.pcv-zalety-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 32px;
}
.pcv-zalety-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pcv-zalety-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.10);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.pcv-zalety-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcv-zalety-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #23272b;
  margin-bottom: 10px;
}
.pcv-zalety-desc {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .pcv-zalety-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pcv-zalety-item { max-width: 100%; }
}
@media (max-width: 600px) {
  .pcv-zalety-title { font-size: 1.2rem; }
  .pcv-zalety-block { padding: 24px 0 16px 0; }
}
.pcv-produkty-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
}
.pcv-produkty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.pcv-produkty-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
  padding: 24px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  position: relative;

}
.pcv-produkty-item:hover {
  box-shadow: 0 6px 24px rgba(60,60,60,0.10);
}
.pcv-produkty-img-wrap {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 18px;
}
.pcv-produkty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(60,60,60,0.07);
  transition: opacity 0.3s;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.pcv-produkty-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(60,60,60,0.07);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
}
.pcv-produkty-img-wrap:hover .pcv-produkty-img {
  opacity: 0;
}
.pcv-produkty-img-wrap:hover .pcv-produkty-img-hover {
  opacity: 1;
}
.pcv-produkty-name {
  font-size: 1.18rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  text-align: center;
}
.pcv-produkty-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 14px;
  text-align: center;
}
.pcv-produkty-price {
  font-size: 1.08rem;
  color: #1976d2;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.pcv-produkty-btn {
  display: inline-block;
  background: #43a047;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(60,60,60,0.07);
}
.pcv-produkty-btn:hover {
  background: #388e3c;
}
@media (max-width: 900px) {
  .pcv-produkty-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .pcv-produkty-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 18px;
  }
  .pcv-produkty-item {
    min-height: 320px;
    padding: 18px 8px 22px 8px;
  }
  .pcv-produkty-img-wrap {
    width: 90px;
    height: 90px;
  }
}

.pcv-kolory-block {
  background: #fff;
  padding: 54px 0 44px 0;
  border-top: 1px solid #e0e0e0;
}
.pcv-kolory-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}
.pcv-kolory-visual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 18px;
}
.pcv-kolory-window {
  width: 260px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
}
.pcv-kolory-window img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 6px rgba(60,60,60,0.07);
}
.pcv-kolory-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.pcv-kolory-btn {
  min-width: 120px;
  height: 38px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s, border 0.2s;
  box-shadow: 0 1px 4px rgba(60,60,60,0.07);
  margin-bottom: 0;
}
.pcv-kolory-btn.active {
  border: 2px solid #43a047;
  box-shadow: 0 2px 8px rgba(67,160,71,0.10);
}
.pcv-kolory-btn:focus {
  border: 2px solid #1976d2;
}
.pcv-kolory-desc {
  text-align: center;
  font-size: 1.08rem;
  color: #444;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .pcv-kolory-visual {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .pcv-kolory-list {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .pcv-kolory-window {
    width: 180px;
    height: 140px;
  }
  .pcv-kolory-window img {
    width: 140px;
    height: 100px;
  }
  .pcv-kolory-btn {
    min-width: 80px;
    height: 32px;
    font-size: 0.95rem;
  }
}

.pcv-parametry-block {
  background: #fff;
  padding: 48px 0 40px 0;
}
.pcv-parametry-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 28px;
}
.pcv-parametry-table-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
  padding: 0 12px;
}
.pcv-parametry-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.08rem;
  background: #fff;
}
.pcv-parametry-table th {
  background: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
  padding: 14px 10px;
  border-bottom: 2px solid #1976d2;
  text-align: left;
  font-size: 1.08rem;
}
.pcv-parametry-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #222;
}
.pcv-parametry-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pcv-parametry-table-wrap {
    padding: 0 2px;
  }
  .pcv-parametry-title {
    font-size: 1.3rem;
  }
  .pcv-parametry-table th, .pcv-parametry-table td {
    padding: 8px 4px;
    font-size: 0.98rem;
  }
}

.pcv-porownanie-block {
  background: #fff;
  padding: 54px 0 44px 0;
  border-top: 1px solid #e0e0e0;
}
.pcv-porownanie-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
}
.pcv-porownanie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 18px auto;
}
.pcv-porownanie-col {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
  padding: 24px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pcv-porownanie-header {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
}
.pcv-porownanie-header.pcv {
  color: #43a047;
}
.pcv-porownanie-header.drewniane {
  color: #a67c52;
}
.pcv-porownanie-header.aluminiowe {
  color: #1976d2;
}
.pcv-porownanie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pcv-porownanie-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #222;
}
.pcv-porownanie-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.pcv-porownanie-icon.plus {
  background: url('data:image/svg+xml;utf8,<svg width="22" height="22" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="11" fill="%2343a047"/><path d="M6 11l3.5 3.5L16 8" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}
.pcv-porownanie-icon.minus {
  background: url('data:image/svg+xml;utf8,<svg width="22" height="22" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="11" fill="%23d32f2f"/><path d="M7 15l8-8" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}
.pcv-porownanie-note {
  text-align: center;
  font-size: 1.08rem;
  color: #222;
  margin-top: 18px;
  background: #e3f2fd;
  border-radius: 10px;
  padding: 12px 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .pcv-porownanie-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pcv-porownanie-col {
    min-height: 0;
    padding: 18px 8px 22px 8px;
  }
}

.pcv-faq-block {
  background: #fff;
  padding: 54px 0 44px 0;
  border-top: 1px solid #e0e0e0;
}
.pcv-faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 32px;
}
.pcv-faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.pcv-faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
  overflow: hidden;
}
.pcv-faq-question {
  width: 100%;
  background: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  outline: none;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #e0e0e0;
}
.pcv-faq-question.active {
  background: #1976d2;
  color: #fff;
}
.pcv-faq-answer {
  display: none;
  padding: 16px 22px 18px 22px;
  font-size: 1.05rem;
  color: #222;
  background: #fff;
}
.pcv-faq-item.open .pcv-faq-answer {
  display: block;
}
@media (max-width: 600px) {
  .pcv-faq-title {
    font-size: 1.3rem;
  }
  .pcv-faq-question {
    font-size: 1rem;
    padding: 12px 10px;
  }
  .pcv-faq-answer {
    font-size: 0.98rem;
    padding: 10px 10px 12px 10px;
  }
}

.pcv-cta-block {
  background: #1976d2;
  color: #fff;
  padding: 56px 0 54px 0;
  margin-top: 0;
}
.pcv-cta-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}
.pcv-cta-left {
  flex: 1 1 340px;
  padding: 0 38px 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pcv-cta-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.pcv-cta-desc {
  font-size: 1.15rem;
  margin-bottom: 0;
  color: #fff;
}
.pcv-cta-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 2px;
}
.pcv-cta-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.08rem;
  margin-right: 12px;
}
.pcv-cta-right {
  flex: 1 1 340px;
  padding: 0 18px 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcv-cta-form {
  background: #1565c0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.10);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 340px;
}
.pcv-cta-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1.08rem;
  background: #fff;
  color: #222;
  margin-bottom: 0;
}
.pcv-cta-form input:focus {
  outline: 2px solid #43a047;
}
.pcv-cta-form button {
  background: #43a047;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 24px;
  padding: 12px 0;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 1px 4px rgba(60,60,60,0.07);
  transition: background 0.2s;
}
.pcv-cta-form button:hover {
  background: #388e3c;
}
@media (max-width: 900px) {
  .pcv-cta-grid {
    flex-direction: column;
    gap: 24px;
  }
  .pcv-cta-left, .pcv-cta-right {
    padding: 0 12px;
  }
  .pcv-cta-form {
    max-width: 100%;
    padding: 24px 12px 18px 12px;
  }
}
@media (max-width: 600px) {
  .pcv-cta-title {
    font-size: 1.3rem;
  }
  .pcv-cta-form input {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
  .pcv-cta-form button {
    font-size: 1rem;
    padding: 10px 0;
  }
}

.pcv-cta-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25, 118, 210, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcv-cta-popup-content {
  background: #fff;
  color: #1976d2;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(60,60,60,0.18);
  padding: 38px 32px 32px 32px;
  text-align: center;
  max-width: 340px;
}
.pcv-cta-popup-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.pcv-cta-popup-content p {
  font-size: 1.08rem;
  margin-bottom: 22px;
}
.pcv-cta-popup-close {
  background: #1976d2;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(60,60,60,0.07);
  transition: background 0.2s;
}
.pcv-cta-popup-close:hover {
  background: #43a047;
}
@media (max-width: 600px) {
  .pcv-cta-popup-content {
    padding: 22px 8px 18px 8px;
    max-width: 95vw;
  }
  .pcv-cta-popup-content h4 {
    font-size: 1.1rem;
  }
  .pcv-cta-popup-content p {
    font-size: 0.98rem;
  }
  .pcv-cta-popup-close {
    font-size: 1rem;
    padding: 8px 18px;
  }
}

.drewniane-hero-block {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.drewniane-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('../images/wooden-frame-windows-3665.webp') center center/cover no-repeat;
  z-index: 1;
}
.drewniane-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(60, 40, 20, 0.55);
  z-index: 2;
}
.drewniane-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 48px 18px 54px 18px;
}
.drewniane-hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(60,40,20,0.18);
}
.drewniane-hero-desc {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 38px;
  text-shadow: 0 1px 8px rgba(60,40,20,0.12);
}
.drewniane-hero-btn {
  display: inline-block;
  background: linear-gradient(90deg,#a67c52,#c49a6c);
  color: #fff;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 16px 48px;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(60,40,20,0.13);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.drewniane-hero-btn:hover {
  background: linear-gradient(90deg,#c49a6c,#a67c52);
  box-shadow: 0 6px 24px rgba(60,40,20,0.18);
}
@media (max-width: 900px) {
  .drewniane-hero-title {
    font-size: 1.7rem;
  }
  .drewniane-hero-desc {
    font-size: 1.05rem;
  }
  .drewniane-hero-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

.drewniane-zalety-block {
  position: relative;
  width: 100%;
  padding: 64px 0 54px 0;
  overflow: hidden;
}
.drewniane-zalety-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('../images/french-window-designs-5520.webp') center center/cover repeat;
  opacity: 0.18;
  z-index: 1;
}
.drewniane-zalety-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.drewniane-zalety-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #a67c52;
  margin-bottom: 38px;
}
.drewniane-zalety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 38px 32px;
  justify-items: center;
}
.drewniane-zalety-item {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(60,40,20,0.07);
  padding: 32px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.drewniane-zalety-item:hover {
  box-shadow: 0 6px 24px rgba(60,40,20,0.13);
}
.drewniane-zalety-icon {
  margin-bottom: 18px;
}
.drewniane-zalety-label {
  font-size: 1.13rem;
  font-weight: 600;
  color: #388e3c;
  text-align: center;
}
@media (max-width: 900px) {
  .drewniane-zalety-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 24px 12px;
  }
}
@media (max-width: 600px) {
  .drewniane-zalety-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 18px 0;
  }
  .drewniane-zalety-item {
    min-width: 0;
    min-height: 120px;
    padding: 18px 8px 14px 8px;
  }
  .drewniane-zalety-title {
    font-size: 1.2rem;
  }
}