button,
a,
input {
  min-height: 48px; 
  -webkit-tap-highlight-color: transparent; 
}
@media (hover: none) {
  .widget-button:active,
  .header-button:active {
    transform: scale(0.96);
    background-color: var(--primary-hover);
  }
  .header-menu a:active {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .certificate-item:active {
    transform: scale(0.98);
  }
}
:root {
  --primary-color: rgb(239, 169, 0);
  --primary-hover: rgb(215, 152, 0);
  --text-light: #ffffff;
  --text-dark: #000000;
  --bg-dark: rgba(0, 0, 0, 0.86);
  --bg-light: #ffffff;
  --bg-gray: rgb(244, 244, 244);
  --bg-footer: #1a1a1a;
  --header-height: 70px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: var(--text-light);
}
.aaa {
  color: #1a1a1a;
}
.header {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  z-index: 100;
  padding: 10px 0;
  transition: transform 0.3s ease; 
  will-change: transform;
}
.header.hidden {
  transform: translateY(-100%);
}
html {
  scroll-behavior: smooth;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.slide-up {
  transform: translateY(40px);
}
.animate-on-scroll.scale-in {
  transform: scale(0.95);
}
.animate-on-scroll.fade-in {
  transform: translateY(0);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Skeleton Loading */
.img-loading {
  background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  color: transparent;
}
.section-partners .img-loading,
.section-advantages .img-loading,
.section-certificates .img-loading,
.section-how-we-work .img-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-logo-col {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 22%;
  min-width: max-content;
}
.logo-icon {
  width: 40px;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
}
.logo-text {
  font-size: 14px;
}
.header-nav-wrapper {
  display: flex;
  align-items: center;
  width: 78%;
}
.burger-btn,
.close-btn,
.mobile-overlay {
  display: none;
}
.header-menu-col {
  width: 69%;
  display: flex;
  justify-content: center;
}
.header-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.header-menu a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}
.header-button-col {
  width: 31%;
  display: flex;
  justify-content: flex-end;
  min-width: max-content;
}
.header-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 700;
  color: var(--text-light);
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(239, 169, 0, 0.25);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}
.header-button:hover {
  background-color: var(--primary-hover);
  box-shadow: 0px 4px 10px rgba(239, 169, 0, 0.4);
  transform: translateY(-1px);
}
.header-button:active {
  transform: translateY(1px);
  box-shadow: 0px 1px 3px rgba(239, 169, 0, 0.25);
}
.section-clear {
  position: relative;
  padding-top: 160px; 
  padding-bottom: 160px;
  background-image: url("https://f1.lpcdn.site/539e25fe4a575fa7c365d3ffe748b59a/d3e0e1999b23e172f0dfa13db3b7d327.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.section-clear::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  z-index: 1;
}
#particles-js .particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.widget-text p {
  margin-bottom: 0;
}
.blank-1 {
  height: 20px;
}
.blank-2 {
  height: 40px;
}
.widget-button-container {
  text-align: center;
}
.widget-button {
  display: inline-block;
  padding: 20px 38px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  color: var(--text-light);
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(239, 169, 0, 0.25);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}
.widget-button:hover {
  background-color: var(--primary-hover);
  box-shadow: 0px 4px 10px rgba(239, 169, 0, 0.4);
  transform: translateY(-1px);
}
.widget-button:active {
  transform: translateY(1px);
  box-shadow: 0px 1px 3px rgba(239, 169, 0, 0.25);
}
.section-services {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--bg-gray);
  color: var(--text-dark);
}
.section-services .widget-text:first-child {
  margin-bottom: 40px;
}
.services-grid-combined {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}
.services-grid-combined .service-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 280px; 
}
.services-grid-combined .service-col:nth-child(-n+4) {
  width: calc(25% - 15px);
}
.services-grid-combined .service-col:nth-child(n+5) {
  width: calc(20% - 16px);
}
.service-btn {
  margin-top: auto;
  font-size: 14px;
  padding: 10px 20px;
}
.section-advantages {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--text-light);
  color: var(--text-dark);
}
.advantages-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
.advantages-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin-top: 20px;
}
.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.advantage-card {
  width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: var(--text-light);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.advantage-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}
.advantage-subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
.advantage-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
.section-how-we-work {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f4f4;
  color: var(--text-dark);
}
.how-we-work-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.how-we-work-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.how-we-work-item {
  width: calc(25% - 22.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-we-work-item:hover {
  transform: translateY(-4px);
}
.how-we-work-icon {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}
.how-we-work-text {
  font-size: 16px;
  line-height: 1.5;
}
.section-consultation {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("https://f1.lpcdn.site/539e25fe4a575fa7c365d3ffe748b59a/f840b59b6af73c7bf07077d994d5c1d1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}
.section-consultation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  z-index: 1;
}
.consultation-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}
.form-group {
  width: 100%;
}
.form-input {
  width: 100%;
  padding: 15px 25px;
  font-size: 16px;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  outline: none;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form-submit-group {
  text-align: center;
  margin-top: 10px;
}
.form-submit-btn {
  width: 100%;
}
.form-privacy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}
.form-privacy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.form-privacy a:hover {
  text-decoration: none;
}
.section-contacts {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--text-light);
  color: var(--text-dark);
}
.contacts-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.contact-col {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-container {
  width: 100%;
  border: 1px solid #eaeaea;
}
.map-container iframe {
  width: 100% !important;
  height: 300px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
}
.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-dark);
  margin-top: -2px;
}
.contact-item p {
  margin: 0;
  line-height: 1.4;
}
.contact-item a {
  color: #0056b3;
  text-decoration: underline;
}
.contact-item a:hover {
  text-decoration: none;
}
.section-certificates {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fcfcfc;
  color: var(--text-dark);
}
.certificates-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}
.certificates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.certificate-item {
  width: calc(25% - 22.5px);
  display: flex;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.certificate-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #eaeaea;
  background-color: #fff;
  padding: 5px;
}
.section-partners {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--text-light);
}
.section-partners .container {
  position: relative;
  z-index: 3;
}
.partners-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  font-family: "TTNorms Bold", "Montserrat", sans-serif;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.partners-grid-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .partners-grid.grid-5 .partner-item {
  width: calc(20% - 24px);
}
.partners-grid.grid-3 .partner-item {
  width: calc(33.333% - 20px);
}
.partners-grid.grid-4-with-text .partner-item-with-text {
  width: calc(25% - 22.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-item img,
.partner-item-with-text img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.partner-name {
  margin-top: 15px;
  text-align: center;
  color: var(--text-dark);
  font-size: 16px;
}
.partners-grid-container .swiper {
  padding-bottom: 0 !important;
  overflow: hidden; 
  width: 100%;
}
.partners-swiper-main .swiper-wrapper,
.partners-swiper-text .swiper-wrapper {
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  transition-timing-function: linear; 
  will-change: transform; 
  transform: translateZ(0);
}
.partners-swiper-main .swiper-slide {
  width: 180px !important; 
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.partners-swiper-text .swiper-slide {
  width: 280px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.partners-swiper-main .swiper-slide img,
.partners-swiper-text .swiper-slide img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .partners-swiper-main .swiper-slide {
    width: 150px !important;
    height: 80px;
  }
  .partners-swiper-text .swiper-slide {
    width: 250px !important;
  }
}
.footer {
  background-color: #1a1a1a;
  color: var(--text-light);
  padding: 60px 0 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-logo {
  width: 50px;
  height: auto;
  opacity: 0.5;
}
.footer-logo-text {
  font-size: 16px;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-col-contact p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}
.footer-col-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col-contact a:hover {
  color: var(--primary-color);
}
.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .header-logo-col {
    width: auto;
  }
  .header-nav-wrapper {
    width: auto;
    flex: 1;
  }
  .header-menu-col {
    width: auto;
    flex: 1;
  }
  .header-button-col {
    width: auto;
  }
  .header-menu {
    gap: 10px;
  }
  .header-menu a {
    font-size: 13px;
    padding: 6px 8px;
  }
  .services-grid-combined .service-col:nth-child(-n+4),
  .services-grid-combined .service-col:nth-child(n+5) {
    width: calc(33.333% - 13.34px);
  }
}
@media (max-width: 992px) {
  .services-grid-combined .service-col:nth-child(-n+4),
  .services-grid-combined .service-col:nth-child(n+5) {
    width: calc(50% - 10px);
  }
  .how-we-work-item,
  .advantage-card,
  .certificate-item,
  .partners-grid.grid-5 .partner-item,
  .partners-grid.grid-3 .partner-item,
  .partners-grid.grid-4-with-text .partner-item-with-text {
    width: calc(50% - 15px);
  }
  .how-we-work-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .section-clear {
    padding-top: 110px; 
    padding-bottom: 80px;
  }
  .section-services,
  .section-advantages,
  .section-how-we-work,
  .section-contacts,
  .section-certificates,
  .section-partners {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-consultation {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .widget-text.widget-1 span {
    font-size: 28px !important;
  }
  .widget-text.widget-2 span {
    font-size: 18px !important;
  }
  .header-inner {
    flex-direction: row;
    gap: 0;
    padding: 10px 0;
  }
  .header-logo-col {
    width: auto;
    justify-content: flex-start;
  }
  .form-input {
    font-size: 16px !important; 
    padding: 16px 25px;
    border-radius: 12px; 
  }
  .form-privacy {
    font-size: 14px; 
    line-height: 1.6;
    padding: 0 10px;
  }
  .form-privacy a {
    min-height: auto;
    padding: 5px 0; 
    display: inline-block;
  }
  .footer-col-contact a,
  .footer-nav a {
    display: inline-block;
    padding: 8px 0; 
  }
  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    width: 44px; 
    height: 44px;
    padding: 12px 6px;
    margin-right: -10px; 
  }
  .close-btn {
    display: block;
    position: absolute;
    font-size: 36px;
    color: var(--text-light);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 10px;
  }
  .burger-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .header-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 20px 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    will-change: transform;
  }
  .header-nav-wrapper.active {
    transform: translateX(0);
  }
  .mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    will-change: opacity, visibility;
  }
  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header-menu-col,
  .header-button-col {
    width: 100%;
    justify-content: center;
  }
  .header-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .header-menu a {
    font-size: 18px;
    padding: 15px;
    width: 100%;
    text-align: center;
  }
  .advantages-grid,
  .certificates-grid {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .advantages-grid::-webkit-scrollbar,
  .certificates-grid::-webkit-scrollbar {
    display: none;
  }
  .how-we-work-grid {
    display: flex;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  .how-we-work-grid .how-we-work-item {
    width: calc(50% - 15px) !important;
    flex: 0 0 calc(50% - 15px) !important;
    margin-bottom: 15px !important;
  }
  .partners-grid.grid-4-with-text .partner-name {
    display: block; 
  }
  .section-services .container {
    padding: 0 !important;
    overflow: hidden;
  }
  .section-services .widget-text:first-child {
    padding: 0 15px;
  }
  .services-swiper {
    padding-bottom: 40px; 
    overflow: visible; 
    width: 100%;
  }
  .services-grid-combined {
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 0;
    justify-content: flex-start;
    align-items: stretch;
  }
  .services-grid-combined .service-col:nth-child(-n+4),
  .services-grid-combined .service-col:nth-child(n+5) {
    width: 80% !important; 
    margin-bottom: 0;
    margin-right: 0 !important; 
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
  }
  .services-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
    transform: scale(0.95);
  }
  .services-pagination {
    bottom: 0 !important;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
  }
  .advantage-card,
  .how-we-work-item,
  .certificate-item {
    flex: 0 0 80%;
    width: 80% !important;
    scroll-snap-align: center;
  }
  .partners-grid.grid-3,
  .partners-grid.grid-4-with-text {
    flex-wrap: wrap !important;
    gap: 15px;
    justify-content: center;
  }
  .partners-grid.grid-3 .partner-item,
  .partners-grid.grid-4-with-text .partner-item-with-text {
    width: calc(50% - 15px) !important;
    flex: 0 0 calc(50% - 15px) !important;
    margin-bottom: 15px;
  }
  .service-col {
  background-color: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 20px;
  min-height: 280px; 
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.service-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(239, 169, 0, 0.6),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.services-grid-combined:hover .service-col::before {
  opacity: 1;
}
.service-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
  .advantage-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
  }
  .service-col {
    margin-bottom: 0 !important;
  }
  .how-we-work-item {
    margin-bottom: 0 !important;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-logo-wrap {
    justify-content: center;
  }
  .consultation-form {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 600px) {
  .contact-col {
    width: 100%;
  }
}
body.no-scroll {
  overflow: hidden;
}
body {
  overflow-x: hidden;
}
a,
input {
  min-height: 44px;
}
.header-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
}
img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .header-menu {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .header-menu li {
    width: 100%;
    text-align: center;
  }
  .header-menu a {
    padding: 12px;
  }
  .widget-button,
  .header-button {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
  .advantages-title,
  .how-we-work-title,
  .contacts-title,
  .certificates-title,
  .partners-title {
    font-size: 28px;
  }
  .advantage-icon {
    width: 50px;
    height: 50px;
  }
  .how-we-work-icon {
    height: 60px;
  }
  .map-container iframe {
    height: 250px;
  }
}
@media (max-width: 375px) {
  .advantages-title,
  .how-we-work-title,
  .contacts-title,
  .certificates-title,
  .partners-title {
    font-size: 24px;
  }
  .widget-text.widget-1 span {
    font-size: 24px !important;
  }
  .form-input {
    padding: 12px 20px;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background-color: #ffffff;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  transform: translateY(-20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-dark);
  box-sizing: border-box;
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}
.modal-close:hover {
  color: #666;
}
.modal-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.3;
}
.modal-subtitle {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.4;
}
.modal-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 0 -30px 25px -30px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  color: #333;
}
.modal-input::placeholder {
  color: #999;
}
.modal-input:focus {
  border-color: var(--primary-color);
}
.modal-submit-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(239, 169, 0, 0.4);
}
.modal-submit-btn:hover {
  background-color: #d99600;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 169, 0, 0.5);
}
.modal-privacy {
  font-size: 11px;
  color: #666;
  margin-top: 15px;
  line-height: 1.5;
}
.modal-privacy a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px dashed #666;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.modal-privacy a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-divider {
    margin: 0 -20px 20px -20px;
  }
  .modal-title {
    font-size: 20px;
  }
}
