@font-face {
  font-family: 'TildaSans';
  src: url('https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: 'TildaSans', Arial, sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
}

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

.container {
  max-width: 1200px !important;
}

.header-container {
  display: flex;
  padding: 25px 40px;
  justify-content: space-between;
}

.header-logo img {
  max-width: 170px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-link img {
  width: 30px;
  height: 30px;
}

.header-link {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #000 !important;
  text-decoration: none;
}

.zayavka-btn {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #ff6b00;
  border-style: none !important;
  box-shadow: none !important;
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.3s;
}

.zayavka-btn:hover {
  background-color: #e55f00;
}

.intro {
  width: 100%;
}

.intro-swiper {
  width: 100%;
  height: 900px;
}

.intro-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  position: relative;
}

.intro-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.intro-slide .container {
  position: relative;
  z-index: 2;
}

.intro-content {
  max-width: 450px;
  padding-left: 40px;
}

.intro-content h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.23;
  color: rgb(255, 107, 0);
  margin-bottom: 30px;
}

.intro-content h1 .highlight {
  color: rgb(255, 107, 0);
  font-weight: 700;
}

.intro-content p {
  font-size: 22px;
  line-height: 1.6;
  color: rgb(82, 82, 82);
  font-weight: 400;
}

/* Swiper Navigation */

.intro-swiper .swiper-button-prev {
  left: 40px;
}

.intro-swiper .swiper-button-next {
  right: 40px;
}

.intro-swiper .swiper-button-prev,
.intro-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-swiper .swiper-button-prev::after,
.intro-swiper .swiper-button-next::after {
  display: none;
}

.intro-swiper .swiper-button-prev svg,
.intro-swiper .swiper-button-next svg {
  width: 14px;
  height: 23px;
}

.intro-swiper .swiper-button-prev svg {
  transform: rotate(180deg);
}


/* Swiper Pagination */
.intro-swiper .swiper-pagination {
  bottom: 30px;
}

.intro-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid #fff;
  opacity: 1;
}

.intro-swiper .swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
}

.services {
  padding-top: 45px;
  padding-bottom: 60px;
}

.services-container {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
}

.services-card {
  cursor: pointer;
  background-color: rgba(255, 107, 0, 1);
  width: 100%;
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 413px;
  transform: 0.3s all ease;
}

.services-card:hover {
   background-color: rgba(255, 135, 50, 1);
}

.service-card-img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 36px;
  line-height: 1.23;
  font-weight: 600;
  color: #fff;
}

.service-card-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: #fff;
  text-align: center;
}

.tech-divider {
  height: 400px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url(https://optim.tildacdn.com/tild3265-3736-4338-b738-383731626232/-/format/webp/lpms-printed-electro.jpg.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-divider-text {
  font-size: 38px;
  font-weight: 700;
  color: rgb(82, 82, 82);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.tech-divider-text.visible {
  opacity: 1;
  transform: translateY(0);
} 

.overmolding {
  padding-top: 105px;
}

.overmolding-title {
  font-size: 62px;
  font-weight: 700;
  color: rgb(255, 107, 0);
}

.overmolding-title span {
  font-weight: 300;
}

.overmolding-subtitle {
  padding-top: 20px;
  line-height: 1.15;
  font-size: 30px;
  font-weight: 300;
  color: #000; 
}

.overmolding-text-row {
  margin-top: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.overmolding-text-container {
  max-width: 360px;
}

.overmolding-text-container span {
  font-weight: 300;
  font-size: 22px;
  color: #525252;
}

.overmolding-swiper {
  margin-top: 75px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.overmolding-swiper img {
  width: 100%;
  height: auto;
  display: block;
}

.overmolding-prev,
.overmolding-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(232, 232, 232);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overmolding-prev::after,
.overmolding-next::after {
  display: none;
}

.overmolding-prev svg,
.overmolding-next svg {
  width: 9px;
  height: 17px;
}

.overmolding-prev svg {
  transform: rotate(180deg);
}

.overmolding-features {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-bottom: 150px;
}

.overmolding-features-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  align-self: flex-start;
}

.features-card-img {
  width: 100px;
  height: auto;
  max-width: 100%;
  margin-bottom: 25px;
}

.features-card-text {
  font-weight: 300;
  font-size: 24px;
  color: #525252;
  text-align: center;
}

.statistics {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 851px;
  background-image: linear-gradient(rgba(255, 107, 0, 0.70), rgba(255, 107, 0, 0.70)), url(https://optim.tildacdn.com/tild6465-3337-4435-b239-303433306135/-/format/webp/overlay.jpg.webp);
  background-size: cover;
  background-position: center;
}

.statistics-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card {
  max-width: 360px;
  
}

.stat-title {
  font-size: 62px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
}

.stat-text {
  font-size: 28px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/* Video Section */
.lpms-video {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: #000;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
}

.lpms-info {
  padding-top: 195px;
  padding-bottom: 180px;
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 1200px;
}

.info-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 90px;
  column-gap: 40px;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.info-card-text {
  font-weight: 300;
  color: #525252;
  font-size: 24px;
  line-height: 1.35;
}

.info-card-img {
  width: 100px;
  height: 100px;
  max-width: 100%;
}

.demonstration {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ff6b00;
}

.demonstration-title {
  font-size: 36px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 90px;
}

.demonstration-title strong {
  font-weight: 700;
}

.demonstration-video {
  position: relative;
  width: 100%;
  height: 510px;
  overflow: hidden;
}

.demonstration-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.documents {
  padding-top: 165px;
  padding-bottom: 120px;
  background: #f8f8f8;
}

.doc-container {
  display: flex;
  align-items: center;
}

.doc-title {
  color: rgb(255, 107, 0);
  font-weight: 300;
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 1.23;
}

.doc-title strong {
  font-weight: 700;
}

.doc-text {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
  color: #000;
  margin-bottom: 60px;
}

/* Our Services Section */
.our-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.our-service-block {
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
}

.our-service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.40));;
  z-index: 1;
}

.our-service-block-title {
  position: relative;
  z-index: 2;
  color: rgb(255, 107, 0);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.our-service-btn {
  position: relative;
  z-index: 2;
  font-size: 15px;
  padding: 14.5px 44px;
  width: fit-content;
}

.difference {
  padding-top: 120px;
  padding-bottom: 120px;
}

.difference-title {
  text-align: center;
  font-size: 42px;
  font-weight: 300;
  color: rgb(255, 107, 0); 
}

.difference-title strong {
  font-weight: 700;
}

.difference-container {
  margin-top: 105px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto auto auto);
  column-gap: 40px;
  row-gap: 0;
}

.difference-container > .difference-block:nth-child(n+3) {
  margin-top: 75px;
}

.difference-block {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.difference-block-title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 6px;
  margin-right: 20px;
  color: #525252;
  margin-top: auto;
}

.difference-block-line {
  background-color: #525252;
  position: relative;
  margin-top: 14px;
  margin-bottom: 14px;
  height: 3px;
  width: 100%;
  margin-right: 20px;
}

.difference-block-text {
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  color: #000;
  padding-left: 20px;
}

.difference-swiper {
  margin-top: 105px;
  margin-bottom: 105px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.difference-swiper img {
  width: 100%;
  height: auto;
  display: block;
}

.difference-prev,
.difference-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(232, 232, 232);
  display: flex;
  align-items: center;
  justify-content: center;
}


.difference-prev::after,
.difference-next::after {
  display: none;
}

.difference-prev svg,
.difference-next svg {
  width: 9px;
  height: 17px;
}

.difference-prev svg {
  transform: rotate(180deg);
}

.lpms-form {
  padding-top: 90px;
  padding-bottom: 150px;
}

.lpms-form-title {
  font-size: 20px;
  text-align: center;
  color: #000;
  font-weight: 300;
  line-height: 1.5;
}

.lpms-form-container {
  display: flex;
  gap: 40px;
  margin-top: 90px;
  padding: 0 100px;
}

.lpms-form-left {
  max-width: 260px;
  width: 100%;
}

.lpms-form-right {
  max-width: 560px;
  width: 100%;
}

.form-link {
  font-size: 20px;
  color: #000 !important;
  font-weight: 300;
  line-height: 1.45;
  text-decoration: none;
}

.form-social-link {
  margin-top: 40px;
}

.form-control {
  border: 1px solid #c7c7c7;
  border-radius: 20px;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  padding: 8px 20px;
  outline: none;
}

.big-form-control {
  min-height: 102px !important;
}

.form-btn {
  padding: 14.5px 44px;
  font-size: 15px;
}

.footer {
  min-height: 314px;
  background: #171717;
}

.footer-container {
  display: flex;
  min-height: 314px;
  align-items: center;
  justify-content: space-between;
}

.footer-img {
  max-width: 207px;
}

.footer-text {
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  text-decoration: none;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  /* Header */
  .header-container {
    flex-direction: column;
    align-items: center;
    padding: 35px;
    padding-top: 80px;
    gap: 18px;
  }

  .header-links {
    gap: 20px;
  }

  .header-logo img {
    max-width: 140px;
  }

  .header-right {
    flex-direction: column;
    gap: 18px;
  }

  .intro-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .intro-swiper .swiper-button-prev {
    left: 10px;
  }

  .intro-swiper .swiper-button-next {
    right: 10px;
  }

  .services-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
    padding: 0 20px;
  }

  .services-card {
    padding: 20px 40px;
    max-width: 600px;
    margin: 0 auto;
  }

  .service-card-title {
    font-size: 32px;
  }

  .service-card-text {
    font-size: 20px;
  }

  .overmolding-text-row {
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 75px;
  }

  .overmolding-text-container {
    max-width: 100%;
  }

  .overmolding-features {
    flex-direction: column;
    gap: 40px;
  }

  .overmolding-features-card {
    padding: 0 40px;
  }


  .statistics-container {
    flex-direction: column;
    gap: 40px;
  }

  .stat-card {
    max-width: 100%;
  }

  /* Info Section */
  .lpms-info {
    padding-left: 50px;
    padding-right: 50px;
  }

  .info-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 40px;
  }

  .info-card {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-card-text {
    font-size: 22px;
    flex: 1;
  }


  .demonstration-title {
    margin-bottom: 45px;
  }

  .demonstration-video {
    height: 383px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  /* Documents */
  .documents {
    padding: 60px 50px;
  }

  .doc-container {
    flex-direction: column;
  }


  .doc-title {
    font-size: 38px;
  }

  .doc-text {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .doc-btn {
    padding: 14.5px 30px;
    font-size: 15px;
  }
  /* Our Services */
  .our-services {
    grid-template-columns: 1fr;
  }


  .difference-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .difference-block {
    display: block;
    grid-row: auto;
  }

  .difference-container > .difference-block:nth-child(n+2) {
    margin-top: 40px;
  }

  .difference-container > .difference-block:nth-child(n+3) {
    margin-top: 40px;
  }

  .difference-swiper {
    margin-top: 50px;
    margin-bottom: 0;
  }

  .lpms-form-container {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin-top: 40px;
    gap: 40px;
  }

  .lpms-form-left {
    max-width: 100%;
    text-align: center;
  }

  .form-social-link {
    margin-top: 20px;
    display: inline-block;
  }

  .lpms-form-right {
    max-width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Footer */
  .footer {
    min-height: 445px;
    display: flex;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    min-height: auto;
    align-items: flex-start;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-right {
    margin-right: auto;
  }

}