@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #1f2937;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 16px;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

a:hover {
  color: #f59e0b;
}

.text-primary {
  color: #f59e0b;
}

.text-secondary {
  color: #1e293b;
}

.text-light {
  color: #6b7280;
}

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease both;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease both;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease both;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

.animate-delay-7 {
  animation-delay: 0.7s;
}

.animate-delay-8 {
  animation-delay: 0.8s;
}

.animate-delay-9 {
  animation-delay: 0.9s;
}

.animate-delay-10 {
  animation-delay: 1s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header--scrolled {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 768px) {
  .header__container {
    height: 70px;
  }
}
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 40px;
  }
}
@media (max-width: 992px) {
  .header__logo {
    margin-right: auto;
  }
}
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__logo-text span {
  color: #f59e0b;
}
.header__logo-text:hover {
  color: #1e293b;
}
.header__logo-text:hover span {
  color: #d97706;
}
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 992px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.header__menu-item {
  position: relative;
}
.header__menu-link {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.3s ease;
}
.header__menu-link:hover {
  color: #f59e0b;
}
.header__menu-link:hover::after {
  width: 100%;
}
@media (max-width: 992px) {
  .header__menu-link {
    font-size: 18px;
    padding: 16px 0;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 992px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #1e293b;
  transition: all 0.3s ease;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.footer {
  background: #1e293b;
  color: #ffffff;
  padding: 32px 0;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 576px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer__separator {
  margin: 0 8px;
  opacity: 0.5;
}
.footer__privacy-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.footer__privacy-link:hover {
  color: #f59e0b;
}
.footer__author {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer__author a {
  color: #f59e0b;
  transition: color 0.3s ease;
}
.footer__author a:hover {
  color: #fbbf24;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.btn:hover i {
  transform: translateX(4px);
}
.btn--primary {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
}
.btn--primary:hover {
  background: #d97706;
  border-color: #d97706;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn--secondary {
  background: transparent;
  color: #1e293b;
  border-color: #1e293b;
}
.btn--secondary:hover {
  background: #1e293b;
  color: #ffffff;
}
.btn--white {
  background: #ffffff;
  color: #1e293b;
  border-color: #ffffff;
}
.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 576px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero {
  position: relative;
  background: #ffffff;
  color: #374151;
  padding: 180px 0 120px;
  overflow: hidden;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
    margin-top: 70px;
  }
}
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.hero__bg-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.hero__bg-shape--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation: float 25s ease-in-out infinite reverse;
}
.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
.hero__content {
  animation: fadeInUp 0.8s ease both;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.08);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero__badge i {
  color: #f59e0b;
  font-size: 16px;
}
@media (max-width: 992px) {
  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__title::after {
  display: none;
}
.hero__title-highlight {
  color: #f59e0b;
  display: inline;
}
.hero__description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
@media (max-width: 992px) {
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__cta {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
@media (max-width: 992px) {
  .hero__cta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero__cta {
    flex-direction: column;
  }
}
.hero__btn-primary {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
}
.hero__btn-primary:hover {
  background: #d97706;
  border-color: #d97706;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.hero__visual {
  position: relative;
  animation: fadeIn 1s ease 0.3s both;
}
@media (max-width: 992px) {
  .hero__visual {
    max-width: 600px;
    margin: 0 auto;
  }
}
.hero__image-wrapper {
  position: relative;
  z-index: 2;
}
.hero__image {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.wyceny {
  position: relative;
  background: #1e293b;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .wyceny {
    padding: 64px 0;
  }
}
.wyceny__decoration {
  position: absolute;
  background: #f59e0b;
  pointer-events: none;
}
@media (max-width: 992px) {
  .wyceny__decoration {
    display: none;
  }
}
.wyceny__decoration--1 {
  width: 120px;
  height: 400px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) skewX(-15deg);
  opacity: 1;
}
.wyceny__decoration--2 {
  width: 60px;
  height: 300px;
  right: 140px;
  top: 50%;
  transform: translateY(-50%) skewX(-15deg);
  opacity: 0.6;
}
.wyceny__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .wyceny__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .wyceny__content {
    order: 2;
  }
}
.wyceny__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}
.wyceny__title::after {
  display: none;
}
.wyceny__title-highlight {
  color: #f59e0b;
  display: block;
}
@media (max-width: 992px) {
  .wyceny__title-highlight {
    display: inline;
  }
}
.wyceny__description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .wyceny__description {
    margin-left: auto;
    margin-right: auto;
  }
}
.wyceny__cta {
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .wyceny__cta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .wyceny__cta {
    flex-direction: column;
  }
}
.wyceny__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.wyceny__btn i {
  font-size: 16px;
}
.wyceny__btn.btn--primary {
  background: #f59e0b;
  color: #ffffff;
  border: 2px solid #f59e0b;
}
.wyceny__btn.btn--primary:hover {
  background: #d97706;
  border-color: #d97706;
  color: #ffffff;
}
.wyceny__btn.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.wyceny__btn.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 576px) {
  .wyceny__btn {
    width: 100%;
    justify-content: center;
  }
}
.wyceny__visual {
  position: relative;
}
@media (max-width: 992px) {
  .wyceny__visual {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
}
.wyceny__image-wrapper {
  position: relative;
}
.wyceny__image {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.custom-promo {
  position: relative;
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .custom-promo {
    padding: 64px 0;
  }
}
.custom-promo__decoration {
  position: absolute;
  background: rgba(245, 158, 11, 0.05);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 992px) {
  .custom-promo__decoration {
    display: none;
  }
}
.custom-promo__decoration--1 {
  width: 120px;
  height: 400px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) skewX(15deg);
}
.custom-promo__decoration--2 {
  width: 60px;
  height: 300px;
  left: 140px;
  top: 50%;
  transform: translateY(-50%) skewX(15deg);
  opacity: 0.6;
}
.custom-promo__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .custom-promo__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.custom-promo__visual {
  position: relative;
}
@media (max-width: 992px) {
  .custom-promo__visual {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
}
.custom-promo__image-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.custom-promo__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.custom-promo__image:hover {
  transform: scale(1.05);
}
.custom-promo__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #f59e0b;
  color: #ffffff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.custom-promo__badge i {
  font-size: 18px;
}
@media (max-width: 992px) {
  .custom-promo__content {
    order: 2;
    text-align: center;
  }
}
.custom-promo__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f59e0b;
  margin-bottom: 8px;
}
.custom-promo__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 24px;
}
.custom-promo__title::after {
  display: none;
}
.custom-promo__title-highlight {
  color: #f59e0b;
  display: block;
}
@media (max-width: 992px) {
  .custom-promo__title-highlight {
    display: inline;
  }
}
.custom-promo__description {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .custom-promo__description {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}
.custom-promo__description strong {
  color: #1e293b;
  font-weight: 600;
}
.custom-promo__features {
  list-style: none;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .custom-promo__features {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.custom-promo__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #374151;
}
@media (max-width: 992px) {
  .custom-promo__feature {
    justify-content: center;
  }
}
.custom-promo__feature i {
  color: #f59e0b;
  font-size: 18px;
  flex-shrink: 0;
}
.custom-promo__cta {
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .custom-promo__cta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .custom-promo__cta {
    flex-direction: column;
  }
}
.custom-promo__cta .btn i {
  transition: transform 0.3s ease;
}
.custom-promo__cta .btn:hover i {
  transform: translateX(4px);
}
.custom-promo__cta .btn.btn--primary:hover i {
  transform: translateX(4px);
}
.custom-promo__cta .btn.btn--secondary i {
  margin-right: 8px;
  transform: none;
}
.custom-promo__cta .btn.btn--secondary:hover i {
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .custom-promo__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.custom-construction {
  padding: 80px 0;
  margin-top: 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .custom-construction {
    padding: 64px 0;
    margin-top: 70px;
  }
}
.custom-construction__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.custom-construction__hero {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}
@media (max-width: 768px) {
  .custom-construction__hero {
    margin-bottom: 64px;
    padding-bottom: 48px;
  }
}
.custom-construction__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}
.custom-construction__title::after {
  display: none;
}
.custom-construction__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b7280;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.custom-construction__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .custom-construction__main {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 992px) {
  .custom-construction__content {
    order: 2;
  }
}
.custom-construction__section {
  margin-bottom: 64px;
}
.custom-construction__section:last-child {
  margin-bottom: 0;
}
.custom-construction__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}
.custom-construction__section-title::after {
  display: none;
}
.custom-construction__text {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
}
.custom-construction__text:last-child {
  margin-bottom: 0;
}
.custom-construction__text strong {
  color: #1e293b;
  font-weight: 600;
}
.custom-construction__link {
  color: #f59e0b;
  font-weight: 500;
  transition: color 0.3s ease;
}
.custom-construction__link:hover {
  color: #d97706;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .custom-construction__visual {
    order: 1;
  }
}
.custom-construction__image-wrapper {
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.custom-construction__image {
  width: 100%;
  height: auto;
  display: block;
}
.custom-construction__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .custom-construction__features {
    grid-template-columns: 1fr;
  }
}
.custom-construction__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #f9fafb;
  gap: 8px;
  transition: all 0.3s ease;
}
.custom-construction__feature:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}
.custom-construction__feature i {
  font-size: 32px;
  color: #f59e0b;
}
.custom-construction__feature span {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}
.custom-construction__process {
  margin-bottom: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafb 0%, rgba(245, 158, 11, 0.05) 100%);
  margin-left: calc(-1 * 24px);
  margin-right: calc(-1 * 24px);
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .custom-construction__process {
    padding: 64px 0;
  }
}
.custom-construction__process-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 64px;
}
.custom-construction__process-title::after {
  display: none;
}
.custom-construction__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .custom-construction__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .custom-construction__steps {
    grid-template-columns: 1fr;
  }
}
.custom-construction__step {
  background: #ffffff;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.custom-construction__step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.custom-construction__step-number {
  width: 60px;
  height: 60px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.custom-construction__step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}
.custom-construction__step-title::after {
  display: none;
}
.custom-construction__step-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.custom-construction__cta {
  text-align: center;
  padding: 80px 48px;
  background: #1e293b;
  color: #ffffff;
  margin-left: calc(-1 * 24px);
  margin-right: calc(-1 * 24px);
}
@media (max-width: 768px) {
  .custom-construction__cta {
    padding: 64px 24px;
  }
}
.custom-construction__cta-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.custom-construction__cta-title::after {
  display: none;
}
.custom-construction__cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.custom-construction__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .custom-construction__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.custom-construction__cta-buttons .btn--large {
  padding: 16px 32px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .custom-construction__cta-buttons .btn--large {
    width: 100%;
    max-width: 300px;
  }
}
.custom-construction__cta-buttons .btn i {
  margin-right: 8px;
}
.custom-construction__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.custom-construction__social-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.custom-construction__social-links {
  display: flex;
  gap: 16px;
}
.custom-construction__social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}
.custom-construction__social-link:hover {
  background: #f59e0b;
  color: #ffffff;
  transform: translateY(-4px);
}

.kontakt {
  background: #f9fafb;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .kontakt {
    padding: 64px 0;
  }
}
.kontakt__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.kontakt__header {
  text-align: center;
  margin-bottom: 48px;
}
.kontakt__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.kontakt__title::after {
  display: none;
}
.kontakt__subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 300;
  margin: 0;
}
.kontakt__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .kontakt__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .kontakt__grid {
    grid-template-columns: 1fr;
  }
}
.kontakt__card {
  background: #ffffff;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.kontakt__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.kontakt__card-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.kontakt__card-icon i {
  font-size: 24px;
  color: #f59e0b;
}
.kontakt__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.kontakt__card-link {
  font-size: 14px;
  color: #6b7280;
  transition: color 0.3s ease;
}
.kontakt__card-link:hover {
  color: #f59e0b;
}
.kontakt__card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}
.kontakt__social {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
}
.kontakt__social-title {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 24px;
}
.kontakt__social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.kontakt__social-link {
  width: 48px;
  height: 48px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.kontakt__social-link i {
  font-size: 20px;
  color: #ffffff;
}
.kontakt__social-link:hover {
  background: #f59e0b;
  transform: translateY(-4px);
}

.error-404 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 48px 24px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .error-404 {
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    padding: 32px 24px;
  }
}
.error-404__container {
  max-width: 600px;
  width: 100%;
}
.error-404__content {
  text-align: center;
}
.error-404__code {
  display: block;
  font-size: clamp(8rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: #f59e0b;
  opacity: 0.15;
  margin-bottom: -48px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 576px) {
  .error-404__code {
    margin-bottom: -32px;
  }
}
.error-404__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  position: relative;
}
.error-404__title::after {
  display: none;
}
.error-404__description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.error-404__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 576px) {
  .error-404__cta {
    flex-direction: column;
  }
}
.error-404__cta .btn i {
  margin-right: 4px;
}
.error-404__cta .btn:hover i {
  transform: none;
}

.archive-produkt {
  padding: 80px 0;
  margin-top: 80px;
  background: #ffffff;
  min-height: calc(100vh - 80px);
}
@media (max-width: 768px) {
  .archive-produkt {
    padding: 64px 0;
    margin-top: 70px;
  }
}
.archive-produkt__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.archive-produkt__header {
  text-align: center;
  margin-bottom: 48px;
}
.archive-produkt__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.archive-produkt__title::after {
  display: none;
}
.archive-produkt__subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 300;
  margin: 0;
}
.archive-produkt__filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.archive-produkt__filter-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  background: #f9fafb;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.archive-produkt__filter-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.archive-produkt__filter-btn.is-active {
  background: #f59e0b;
  color: #ffffff;
}
.archive-produkt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .archive-produkt__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .archive-produkt__grid {
    grid-template-columns: 1fr;
  }
}
.archive-produkt__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px;
  color: #6b7280;
  font-size: 18px;
}
.archive-produkt__load-more {
  text-align: center;
}
.archive-produkt__load-more .btn {
  min-width: 200px;
}
.archive-produkt__load-more .btn .fa-spinner {
  margin-left: 8px;
}

.produkt-card {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}
.produkt-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.produkt-card:hover .produkt-card__image img {
  transform: scale(1.05);
}
.produkt-card:hover .produkt-card__more i {
  transform: translateX(4px);
}
.produkt-card__link {
  display: block;
  color: inherit;
}
.produkt-card__link:hover {
  color: inherit;
}
.produkt-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f9fafb;
}
.produkt-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.produkt-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f59e0b;
  color: #ffffff;
}
.produkt-card__content {
  padding: 24px;
}
.produkt-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}
.produkt-card__title::after {
  display: none;
}
.produkt-card__excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.produkt-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #f59e0b;
}
.produkt-card__more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.single-produkt {
  padding: 48px 0 80px;
  margin-top: 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .single-produkt {
    padding: 32px 0 64px;
    margin-top: 70px;
  }
}
.single-produkt__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.single-produkt__breadcrumbs {
  margin-bottom: 32px;
  font-size: 14px;
  color: #6b7280;
}
.single-produkt__breadcrumbs a {
  color: #6b7280;
  transition: color 0.3s ease;
}
.single-produkt__breadcrumbs a:hover {
  color: #f59e0b;
}
.single-produkt__breadcrumbs .separator {
  margin: 0 8px;
  color: #6b7280;
}
.single-produkt__breadcrumbs .current {
  color: #374151;
}
.single-produkt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .single-produkt__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.single-produkt__gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 992px) {
  .single-produkt__gallery {
    position: static;
    order: 1;
  }
}
@media (max-width: 992px) {
  .single-produkt__info {
    order: 2;
  }
}
.single-produkt__category {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  margin-bottom: 16px;
}
.single-produkt__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}
.single-produkt__title::after {
  display: none;
}
.single-produkt__short-desc {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 32px;
}
.single-produkt__dimensions {
  background: #f9fafb;
  padding: 24px;
  margin-bottom: 32px;
}
.single-produkt__dimensions-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 16px;
}
.single-produkt__dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .single-produkt__dimensions-grid {
    grid-template-columns: 1fr;
  }
}
.single-produkt__dimension {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.single-produkt__dimension .label {
  font-size: 12px;
  color: #6b7280;
}
.single-produkt__dimension .value {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.single-produkt__cta {
  margin-bottom: 24px;
}
.single-produkt__cta .btn--large {
  padding: 16px 32px;
  font-size: 18px;
  width: 100%;
  justify-content: center;
}
.single-produkt__cta .btn--large i {
  margin-right: 8px;
}
.single-produkt__cta .btn--large:hover i {
  transform: none;
}
.single-produkt__3d-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}
.single-produkt__3d-info i {
  color: #f59e0b;
}
.single-produkt__description {
  padding-top: 48px;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
  margin-bottom: 48px;
}
.single-produkt__description-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}
.single-produkt__description-title::after {
  display: none;
}
.single-produkt__description-content {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}
.single-produkt__description-content p {
  margin-bottom: 24px;
}
.single-produkt__description-content ul, .single-produkt__description-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.single-produkt__description-content li {
  margin-bottom: 8px;
}
.single-produkt__back {
  text-align: center;
}
.single-produkt__back .btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}
.single-produkt__back .btn:hover i {
  transform: translateX(-4px);
}

.produkt-gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  background: #f9fafb;
  margin-bottom: 16px;
  overflow: hidden;
}
.produkt-gallery__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.produkt-gallery__item.is-active {
  opacity: 1;
  visibility: visible;
}
.produkt-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.produkt-gallery__viewer {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
.produkt-gallery__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.produkt-gallery__zoom i {
  font-size: 18px;
  color: #1e293b;
}
.produkt-gallery__zoom:hover {
  background: #f59e0b;
}
.produkt-gallery__zoom:hover i {
  color: #ffffff;
}
.produkt-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 576px) {
  .produkt-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.produkt-gallery__thumb {
  aspect-ratio: 1/1;
  background: #f9fafb;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.produkt-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.produkt-gallery__thumb:hover {
  border-color: rgba(245, 158, 11, 0.5);
}
.produkt-gallery__thumb.is-active {
  border-color: #f59e0b;
}
.produkt-gallery__thumb-3d {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #1e293b;
  color: #ffffff;
}
.produkt-gallery__thumb-3d i {
  font-size: 20px;
}
.produkt-gallery__thumb-3d span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery-lightbox__close i {
  font-size: 28px;
  color: #ffffff;
}
.gallery-lightbox__close:hover {
  transform: rotate(90deg);
}
.gallery-lightbox__prev, .gallery-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery-lightbox__prev i, .gallery-lightbox__next i {
  font-size: 24px;
  color: #ffffff;
}
.gallery-lightbox__prev:hover, .gallery-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gallery-lightbox__prev {
  left: 24px;
}
.gallery-lightbox__next {
  right: 24px;
}
.gallery-lightbox__content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.archive-realizacja {
  padding: 80px 0;
  margin-top: 80px;
  background: #ffffff;
  min-height: calc(100vh - 80px);
}
@media (max-width: 768px) {
  .archive-realizacja {
    padding: 64px 0;
    margin-top: 70px;
  }
}
.archive-realizacja__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.archive-realizacja__header {
  text-align: center;
  margin-bottom: 48px;
}
.archive-realizacja__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.archive-realizacja__title::after {
  display: none;
}
.archive-realizacja__subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 300;
  margin: 0;
}
.archive-realizacja__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .archive-realizacja__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .archive-realizacja__grid {
    grid-template-columns: 1fr;
  }
}
.archive-realizacja__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px;
  color: #6b7280;
  font-size: 18px;
}
.archive-realizacja__load-more {
  text-align: center;
}
.archive-realizacja__load-more .btn {
  min-width: 200px;
}
.archive-realizacja__load-more .btn .fa-spinner {
  margin-left: 8px;
}

.realizacja-card {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}
.realizacja-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.realizacja-card:hover .realizacja-card__image img {
  transform: scale(1.05);
}
.realizacja-card:hover .realizacja-card__cta i {
  transform: translateX(4px);
}
.realizacja-card__link {
  display: block;
  color: inherit;
}
.realizacja-card__link:hover {
  color: inherit;
}
.realizacja-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f9fafb;
}
.realizacja-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.realizacja-card__content {
  padding: 24px;
}
.realizacja-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}
.realizacja-card__title::after {
  display: none;
}
.realizacja-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}
.realizacja-card__meta i {
  color: #f59e0b;
}
.realizacja-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #f59e0b;
}
.realizacja-card__cta i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.single-realizacja {
  padding: 48px 0 80px;
  margin-top: 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .single-realizacja {
    padding: 32px 0 64px;
    margin-top: 70px;
  }
}
.single-realizacja__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.single-realizacja__breadcrumbs {
  margin-bottom: 32px;
  font-size: 14px;
  color: #6b7280;
}
.single-realizacja__breadcrumbs a {
  color: #6b7280;
  transition: color 0.3s ease;
}
.single-realizacja__breadcrumbs a:hover {
  color: #f59e0b;
}
.single-realizacja__breadcrumbs .separator {
  margin: 0 8px;
  color: #6b7280;
}
.single-realizacja__breadcrumbs .current {
  color: #374151;
}
.single-realizacja__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .single-realizacja__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.single-realizacja__gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 992px) {
  .single-realizacja__gallery {
    position: static;
    order: 1;
  }
}
@media (max-width: 992px) {
  .single-realizacja__info {
    order: 2;
  }
}
.single-realizacja__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}
.single-realizacja__title::after {
  display: none;
}
.single-realizacja__cta {
  margin-bottom: 24px;
}
.single-realizacja__cta .btn--large {
  padding: 16px 32px;
  font-size: 18px;
  width: 100%;
  justify-content: center;
}
.single-realizacja__cta .btn--large i {
  margin-right: 8px;
}
.single-realizacja__cta .btn--large:hover i {
  transform: none;
}
.single-realizacja__description {
  padding-top: 48px;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
  margin-bottom: 48px;
}
.single-realizacja__description-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}
.single-realizacja__description-title::after {
  display: none;
}
.single-realizacja__description-content {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}
.single-realizacja__description-content p {
  margin-bottom: 24px;
}
.single-realizacja__description-content ul, .single-realizacja__description-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.single-realizacja__description-content li {
  margin-bottom: 8px;
}
.single-realizacja__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .single-realizacja__actions {
    flex-direction: column;
  }
  .single-realizacja__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.single-realizacja__actions .btn i {
  transition: transform 0.3s ease;
}
.single-realizacja__actions .btn--secondary:hover i {
  transform: translateX(-4px);
}
.single-realizacja__actions .btn--primary:hover i {
  transform: scale(1.1);
}

.realizacja-gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  background: #f9fafb;
  margin-bottom: 16px;
  overflow: hidden;
}
.realizacja-gallery__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.realizacja-gallery__item.is-active {
  opacity: 1;
  visibility: visible;
}
.realizacja-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.realizacja-gallery__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.realizacja-gallery__zoom i {
  font-size: 18px;
  color: #1e293b;
}
.realizacja-gallery__zoom:hover {
  background: #f59e0b;
}
.realizacja-gallery__zoom:hover i {
  color: #ffffff;
}
.realizacja-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 576px) {
  .realizacja-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.realizacja-gallery__thumb {
  aspect-ratio: 1/1;
  background: #f9fafb;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.realizacja-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.realizacja-gallery__thumb:hover {
  border-color: rgba(245, 158, 11, 0.5);
}
.realizacja-gallery__thumb.is-active {
  border-color: #f59e0b;
}

.realizacja-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.realizacja-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}
.realizacja-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.realizacja-lightbox__close i {
  font-size: 28px;
  color: #ffffff;
}
.realizacja-lightbox__close:hover {
  transform: rotate(90deg);
}
.realizacja-lightbox__prev, .realizacja-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.realizacja-lightbox__prev i, .realizacja-lightbox__next i {
  font-size: 24px;
  color: #ffffff;
}
.realizacja-lightbox__prev:hover, .realizacja-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.realizacja-lightbox__prev {
  left: 24px;
}
.realizacja-lightbox__next {
  right: 24px;
}
.realizacja-lightbox__content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.realizacja-lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.realizacja-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-policy {
  padding: 48px 0 80px;
  margin-top: 80px;
  background: #ffffff;
  min-height: calc(100vh - 80px);
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 32px 0 64px;
    margin-top: 70px;
  }
}
.privacy-policy__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.privacy-policy__header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}
.privacy-policy__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}
.privacy-policy__title::after {
  display: none;
}
.privacy-policy__date {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.privacy-policy__intro {
  font-size: 18px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 48px;
  padding: 24px;
  background: #f9fafb;
  border-left: 4px solid #f59e0b;
}
.privacy-policy__intro p:last-child {
  margin-bottom: 0;
}
.privacy-policy__content {
  margin-bottom: 48px;
}
.privacy-policy__section {
  margin-bottom: 48px;
}
.privacy-policy__section:last-child {
  margin-bottom: 0;
}
.privacy-policy__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f59e0b;
  display: inline-block;
}
.privacy-policy__section-title::after {
  display: none;
}
.privacy-policy__section-content {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}
.privacy-policy__section-content p {
  margin-bottom: 24px;
}
.privacy-policy__section-content ul, .privacy-policy__section-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}
.privacy-policy__section-content ul {
  list-style: disc;
}
.privacy-policy__section-content ol {
  list-style: decimal;
}
.privacy-policy__section-content li {
  margin-bottom: 8px;
}
.privacy-policy__section-content a {
  color: #f59e0b;
  text-decoration: underline;
}
.privacy-policy__section-content a:hover {
  color: #d97706;
}
.privacy-policy__section-content strong {
  font-weight: 600;
  color: #1e293b;
}
.privacy-policy__contact {
  background: #f9fafb;
  padding: 32px;
  margin-bottom: 48px;
}
.privacy-policy__back {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(30, 41, 59, 0.1);
}
.privacy-policy__back .btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}
.privacy-policy__back .btn:hover i {
  transform: translateX(-4px);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #f59e0b;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
.scroll-to-top i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.scroll-to-top:hover {
  background: #d97706;
  transform: translateY(-4px);
}
.scroll-to-top:hover i {
  transform: translateY(-2px);
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */