@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-blue: #1837da;
  --text-dark: #231f20;
  --text-black: #000000;
  --text-white: #ffffff;
  --bg-light: #f6f7f8;
  --bg-dark: #040f17;
  --font-main: 'Inter', sans-serif;
  --text-gray: #888888;
  --white: #ffffff;
}

.wrapper {
  max-width: 100.00vw;
  margin: 0 auto;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-title {
  font-size: 2.08vw;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 2.08vw;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.56vw;
  height: 3.12vw;
  border-radius: 2.60vw;
  font-weight: 500;
  font-size: 0.9vw;
  transition: all 0.3s ease;
  font-family: "Geologica", sans-serif;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0px 6px 6px rgba(17, 17, 17, 0.2);
}

.btn-primary:hover {
  background-color: #122bb0;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.header-section {
  position: relative;
  background-color: #040f17;
  color: #fff;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 1.25vw;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.12vw;
}

.logo-group {
  width: 4.17vw;
  height: 3.12vw;
  position: relative;
}

.logo-bg {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 1.56vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 3.18vw;
  height: 2.24vw;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.56vw;
  align-items: center;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
}

.login-btn-wrapper {
  display: flex;
  align-items: center;
  background-color: #1837da;
  border-radius: 2.08vw;
  padding: 0.26vw 1.04vw 0.26vw 0.26vw;
  gap: 0.52vw;
  height: 2.66vw;
  cursor: pointer;
}

.login-icon-bg {
  width: 2.34vw;
  height: 2.34vw;
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.05vw solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-text {
  font-size: 0.73vw;
  font-weight: 500;
}

.hero-section {
  position: relative;
  margin-bottom: 5vw;
}

.home-controls-preview {
  margin-bottom: 8vw;
}

.home-controls-preview h2 {
  margin-bottom: 0;
}

.home-controls-header {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  margin-bottom: 2.8vw;
}

.home-controls-subtitle {
  max-width: 34vw;
  font-size: 0.95vw;
  color: #6b7280;
}

.home-controls-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.7vw;
}

.home-control-card {
  position: relative;
  border-radius: 1.4vw;
  padding: 1.4vw;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 60%), linear-gradient(135deg, #0b1f74 0%, #1829b0 40%, #0c1238 100%);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.35vw 1.4vw rgba(8, 20, 92, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-control-card:hover {
  transform: translateY(-0.25vw);
  box-shadow: 0 0.7vw 2vw rgba(8, 20, 92, 0.55);
}

.home-control-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.home-control-card__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-control-card__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-control-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1vw 1.8vw rgba(3, 8, 36, 0.9));
  transform-origin: center bottom;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home-control-card:hover .home-control-card__image-wrap img {
  transform: translateY(-0.25vw) scale(1.03);
  filter: drop-shadow(0 1.35vw 2.2vw rgba(2, 6, 28, 0.96));
}

.home-control-card__body {
  margin-top: 1vw;
}

.home-control-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.05vw;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}

.home-control-card--all {
  background: #f9fafb;
  color: #111827;
  box-shadow: 0 0.3vw 1vw rgba(15, 23, 42, 0.12);
}

.home-control-card--all:hover {
  transform: translateY(-0.2vw);
  box-shadow: 0 0.6vw 1.6vw rgba(15, 23, 42, 0.16);
}

.home-control-card--all .home-control-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.home-control-card--all .home-control-card__title {
  font-size: 1.1vw;
  margin-bottom: 0.5vw;
}

.home-control-card__text {
  font-size: 0.9vw;
  color: #4b5563;
  margin: 0 0 1vw;
  max-width: 15vw;
}

.home-control-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35vw;
  font-size: 0.85vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d4ed8;
}

.home-control-card__btn svg {
  transition: transform 0.25s ease;
}

.home-control-card--all:hover .home-control-card__btn svg {
  transform: translateX(0.2vw);
}

@media (max-width: 1024px) {
  .home-controls-preview {
    padding: 6vw 0 3vw;
  }

  .home-controls-subtitle {
    max-width: 100%;
    font-size: 1.5vw;
  }

  .home-controls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5vw;
  }

  .home-control-card {
    border-radius: 2.4vw;
    padding: 2.2vw;
  }

  .home-control-card__title {
    font-size: 1.9vw;
  }

  .home-control-card--all .home-control-card__title {
    font-size: 2vw;
  }

  .home-control-card__text {
    font-size: 1.5vw;
    max-width: 100%;
  }

  .home-control-card__btn {
    font-size: 1.4vw;
  }
}

@media (max-width: 640px) {
  .home-controls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3vw;
    column-gap: 3vw;
  }

  .home-control-card {
    border-radius: 3.6vw;
    padding: 3vw 2.4vw;
  }

  .home-control-card--all {
    grid-column: span 2;
  }
}

.hero-content {
  position: relative;
  height: 50vw;
  display: flex;
  align-items: center;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0.83vw;
  left: 1.3vw;
  right: 1.3vw;
  bottom: 0;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

.hero-bg-wrapper--animated {
  background: radial-gradient(circle at top center, rgba(40, 73, 255, 0.28), transparent 60%), radial-gradient(circle at 30% 10%, rgba(80, 186, 255, 0.22), transparent 55%), radial-gradient(circle at 70% 8%, rgba(0, 255, 209, 0.25), transparent 55%), #020617;
}

.hero-bg-wrapper--animated::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -140%;
  width: 220%;
  height: 220%;
  transform: translateX(-50%) translateY(20%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(56, 189, 248, 0.85) 0%, rgba(56, 189, 248, 0.5) 18%, rgba(56, 189, 248, 0.12) 40%, rgba(15, 23, 42, 0) 65%);
  opacity: 0;
  animation: heroPlanetRise 2.8s ease-out forwards 0.3s;
  pointer-events: none;
}

.hero-bg-wrapper--animated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(148, 163, 253, 0.4), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.4;
}

@keyframes heroPlanetRise {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.hero-bg-img,
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-wrapper--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.35) 55%, rgba(2, 6, 23, 0.5) 100%);
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slider--single,
.hero-slider__slides {
  width: 100%;
}

.hero-slider .swiper-slide {
  height: auto;
}

.hero-slider-pagination {
  position: absolute;
  left: 50% !important;
  bottom: 2.2vw !important;
  transform: translateX(-50%);
  z-index: 5;
  width: auto !important;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 0.55vw;
  height: 0.55vw;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0 0.35vw !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.25);
}

.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 2.8vw;
  height: 2.8vw;
  margin-top: -1.4vw;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}

.hero-slider-prev {
  left: 2.5vw;
}

.hero-slider-next {
  right: 2.5vw;
}

.hero-slider-prev svg,
.hero-slider-next svg {
  width: 1.1vw;
  height: 1.1vw;
}

.hero-overlay-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 2.6vw;
  margin-top: -5.21vw;
  height: 100%;
  padding-top: 10.125vw !important;
}

.hero-text-container {
  flex: 1;
  max-width: 50vw;
  display: flex;
  flex-direction: column;
  padding-bottom: 4.5vw;
}

.hero-title {
  font-size: 3vw;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3.12vw;
  text-transform: uppercase;
  color: white;
  font-family: "Geologica", sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 1.04vw;
  margin-bottom: 3.12vw;
}

.hero-info-bar {
  display: flex;
  align-items: center;
  gap: 1.04vw;
  font-size: 1.25vw;
  color: #fff;
  margin-top: auto;
  font-weight: 400;
}

.hero-info-item {
  max-width: 34vw;
}

.hero-info-item strong {
  font-weight: 700;
}

.hero-info-divider {
  width: 0.05vw;
  height: 4vw;
  background-color: #fff;
}

.hero-side-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  margin-top: 0;
}

.hero-side-block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background-color: #ffffff10;
  border-radius: 2.08vw;
  padding: 1.56vw 2.08vw;
  min-width: 16.75vw;
  height: 10.9vw;
  backdrop-filter: blur(50px);
  border: 1px solid #ffffff29;
  max-width: 16.75vw;
  transition: 0.25s ease;
}

.hero-side-text {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 700;
  font-family: "Geologica", sans-serif;
}

.hero-side-arrow {
  width: 2.6vw;
  height: 2.6vw;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.25s ease;
}

.hero-side-arrow svg {
  width: 1.04vw;
  height: auto;
}

.hero-side-arrow svg path {
  transition: 0.25s ease;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}

.case-metric {
  flex: 0 0 auto;
  min-width: 10vw;
  padding: 1vw 1.4vw;
  border-radius: 1.8rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.case-metric__label {
  font-size: 0.95vw;
  font-weight: 600;
  color: #111827;
}

.case-content {}

.case-main-image {
  margin: 1.5vw 0 1.2vw;
}

.case-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.wp-block-image img {
  border-radius: 20px;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 3vw;
  align-items: flex-start;
}

.case-content__inner {
  max-width: 46vw;
  font-size: 1vw;
  line-height: 150%;
  color: #111827;
}

.case-content__inner p {
  margin-bottom: 1.2vw;
}

.case-content__inner ul,
.case-content__inner ol {
  margin: 0 0 1.5vw 1.5vw;
}

.case-content__inner h2,
.case-content__inner h3 {
  margin: 2vw 0 1vw;
}

.case-title {
  font-size: 2.1vw;
  font-weight: 700;
  margin-bottom: 0.8vw;
  line-height: 1.3;
}

.case-subtitle {
  font-size: 1vw;
  line-height: 150%;
  color: #4b5563;
  margin-bottom: 1.2vw;
}

.case-form {
  padding: 2vw 2.2vw;
  border-radius: 2rem;
  background: linear-gradient(180deg, #e7f5fe 0%, #b2dcff 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  position: sticky;
  top: 6vw;
  align-self: flex-start;
}

.case-form__title {
  font-size: 1.2vw;
  font-weight: 700;
  margin-bottom: 0.8vw;
  line-height: 1.4;
}

.case-form__subtitle {
  font-size: 0.9vw;
  line-height: 1.5;
  color: #1f2933;
  margin-bottom: 1.6vw;
}

.case-form__form {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.case-form__form .form-input {
  text-align: left;
}

.btn-glass {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  color: #fff;
  backdrop-filter: blur(0.26vw);
  transition: 0.25s ease;
}

.services-section {
  background-color: white;
  margin-bottom: 8vw;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65vw;
  margin-bottom: 3.12vw;
  padding: 0.35vw 0;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75vw 1.5vw;
  border-radius: 2.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  font-size: 0.9vw;
  font-weight: 500;
  color: var(--text-dark, #231f20);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-tab:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: rgba(24, 55, 218, 0.06);
  box-shadow: 0 2px 8px rgba(24, 55, 218, 0.12);
  transform: translateY(-1px);
}

.service-tab.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(24, 55, 218, 0.35);
}

.service-tab.active:hover {
  background-color: #122bb0;
  border-color: #122bb0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(18, 43, 176, 0.4);
}

.service-content {
  position: relative;
}

.service-tab-content {
  display: none;
  gap: 4vw;
  align-items: flex-start;
}

.service-tab-content.active {
  display: flex;
}

.service-tab-content .service-info {
  flex: 1;
}

.service-info {
  flex: 1;
}

.service-heading {
  font-size: 2vw;
  font-weight: 700;
  margin-bottom: 1.56vw;
  line-height: 1.3;
}

.service-desc {
  font-size: 1vw;
  line-height: 150%;
  color: #231f20;
  margin-bottom: 2.08vw;
  font-weight: 400;
}

.service-actions {
  display: flex;
  gap: 1.04vw;
}

.service-image-wrapper {
  flex: 1;
  border-radius: 2.08vw;
  overflow: hidden;
  height: 28vw;
  width: 35vw;
  min-width: 35vw;
}

.service-img {
  width: 100%;
  height: auto;
  border-radius: 2.08vw;
}

.consultation-section {
  margin-bottom: 8vw;
}

.consultation-card {
  background: linear-gradient(180deg, #e7f5fe 0%, #B2DCFF 100%);
  border-radius: 2.08vw;
  padding: 3.12vw;
  display: flex;
  position: relative;

  min-height: auto;
}

.consultation-content {
  flex: 1;
  z-index: 2;
  max-width: 50vw;
}

.consult-title {
  font-size: 2.2vw;
  font-weight: 700;
  margin-bottom: 1.25vw;
  line-height: 1.1;
}

.consult-subtitle {
  font-size: 1.25vw;
  color: rgb(35 31 32 / 80%);
  margin-bottom: 2.5vw;
  font-weight: 400;
}

.consult-form {
  display: flex;
  gap: 1.04vw;
  flex-wrap: wrap;
}

.form-input {
  height: 3.54vw;
  border-radius: 2.60vw;
  border: none;
  padding: 0 1.56vw;
  font-size: 0.83vw;
  width: 15.05vw;
  background-color: white;
  backdrop-filter: blur(0.26vw);
}

.form-btn {
  height: 3.54vw;
  padding: 0 2.08vw;
}

.consultation-image {
  position: absolute;
  right: 2.6vw;
  top: -5.6vw;
  width: 25vw;
  height: 13.7vw;
  pointer-events: none;
}

.merged-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.sat-img-main {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0.8);
}

.sat-img-shadow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-section {
  margin-bottom: 8vw;
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7vw;
  margin-bottom: 2.4vw;
  width: 100%;
}

.catalog-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1vw 1.25vw;
  border-radius: 1.25vw;
  background: #fff;
  border: 1.5px solid #e8eaed;
  font-size: 1vw;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  font-family: "Geologica", sans-serif;
}

.catalog-tab:hover {
  background: #f7f8fa;
  border-color: rgba(24, 55, 218, 0.25);
  color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(24, 55, 218, 0.08);
}

.catalog-tab.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(24, 55, 218, 0.25);
}

.catalog-tab.active:hover {
  background: #122bb0;
  border-color: #122bb0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24, 55, 218, 0.3);
}

.catalog-tab-content {
  display: none;
}

.catalog-tab-content.active {
  display: block;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7vw;
  margin-bottom: 2.60vw;
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6vw;
  margin-bottom: 2.6vw;
}

.cat-card {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4%;
  align-items: stretch;
  background: #fff;
  border-radius: 1.25vw;
  padding: 2.2vw 2vw 2vw;
  min-height: 12vw;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  overflow: hidden;
}

.cat-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cat-card__pic {
  position: relative;
  min-height: 0;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  background: transparent;
}

.cat-card__pic--empty {
  min-height: 8vw;
}

.cat-card__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

.cat-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.15vw;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.6vw;
  line-height: 1.3;
}

.cat-card__desc {
  font-size: 0.85vw;
  line-height: 1.5;
  color: var(--text-gray);
  margin: 0 0 1.1vw;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4vw;
  height: 2.4vw;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cat-card__btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateX(3px);
}

.product-card {
  background-color: #fff;
  border-radius: 2.08vw;
  padding: 1.2vw 1vw;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  border: 1px solid #eee;
}

.product-img-box {
  height: 9vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.04vw;
  border-radius: 12px;
  overflow: hidden;
}

.product-img-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-category {
  font-size: 0.7vw;
  color: #404042;
  margin-bottom: 0.4vw;
  display: block;
}

.product-name {
  font-size: 1vw;
  font-weight: 700;
  margin-bottom: 0.78vw;
  font-family: "Geologica", sans-serif;
  margin-bottom: 1vw;
}

.product-price {
  font-size: 1.15vw;
  font-weight: 700;
  margin-bottom: 0.5vw;
}

.product-btn {
  border-color: #ccc;
  color: #230F20;
  max-width: max-content;
}

.catalog-footer {
  display: flex;
  justify-content: center;
}

.cases-section {
  margin-bottom: 7vw;
}

.section-subtitle {
  margin-top: -1.3vw;
  margin-bottom: 2.2vw;
  font-size: 1.25vw;
  font-weight: 400;
  color: #231F20;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.56vw;
  margin-bottom: 2.60vw;
}

.case-card {
  position: relative;
  border-radius: 2.08vw;
  overflow: hidden;
  height: 25vw;
  color: #fff;
}

.case-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.overlay-blue {
  background-color: #1a47a9;
}

.overlay-purple {
  background-color: #6e24f5;
}

.overlay-orange {
  background-color: #ff6900;
}

.overlay-azure {
  background-color: #0046f9;
}

.case-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-card .case-content {
  padding: 2.08vw;
}

.case-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.case-tag {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.7vw 1.6vw;
  border-radius: 1.56vw;
  font-size: 1vw;
  margin-bottom: auto;
}

.case-title {
  font-size: 2vw;
  font-weight: 500;
  margin-bottom: 1.5vw;
  line-height: 140%;
}

.case-stats {
  display: flex;
  gap: 2.08vw;
  padding-top: 1.56vw;
  border-top: 0.05vw solid rgba(255, 255, 255, 0.3);
}

.stat-value {
  font-size: 1.88vw;
  font-weight: 700;
  margin-bottom: 0.26vw;
}

.stat-label {
  font-size: 0.73vw;
  opacity: 0.9;
}

section.case-content {
  margin-bottom: 7vw;
}

.case-card__excerpt {
  font-size: 0.9vw;
  line-height: 150%;
  opacity: 0.92;
  max-width: 27vw;
}

.cases-footer {
  display: flex;
  justify-content: center;
}

.why-us-section {
  margin-bottom: 8vw;
}

.why-us-benefits-grid {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vw;
  flex-wrap: wrap;
}

.why-us-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.56vw;
}

.why-card {
  background: #f9fafc;
  border-radius: 2.08vw;
  padding: 2.08vw 1.56vw;
  min-height: 16.15vw;
  box-shadow: 0.00vw 0.21vw 0.21vw rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.why-card:nth-child(1) {
  width: 23.229vw;
  justify-self: start;
}

.why-card:nth-child(2) {
  grid-column: 2;
  width: 49.4vw;
}

.why-card:nth-child(3) {
  width: calc(50% - 1vw);
  justify-self: start;
}

.why-card:nth-child(4) {
  grid-column: 2;
  width: calc(50% - 1vw);
  justify-self: start;
}

.why-card-gradient {
  background: linear-gradient(135deg, #e7f5fe 0%, #b2dcff 100%);
  flex-direction: row;
  padding: 2.08vw;
  gap: 4vw;
  align-items: start;
  position: relative;
}

.why-card-icon-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.why-card-gradient .why-icon-box {
  margin-bottom: 0;
  width: 4vw;
  height: 4vw;
}

.why-card-content-side {
  background: #fff;
  border-radius: 1.56vw;
  padding: 2.08vw 1.56vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-left: -0.78vw;
}

.why-card-dark {
  background: #303030;
  color: #fff;
}

.why-icon-box {
  width: 3.65vw;
  height: 3.65vw;
  border-radius: 0.52vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.56vw;
  flex-shrink: 0;
}

.why-icon-blue {
  background-color: var(--primary-blue);
}

.why-icon-white {
  background-color: #fff;
}

.why-icon-img {
  width: 2vw;
  height: 2vw;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.why-icon-ruble {
  font-size: 2.08vw;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.why-title {
  font-size: 1.4vw;
  font-weight: 700;
  margin-bottom: 1vw;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
  color: #231f20;
}

.why-card-dark .why-title {
  color: #fff;
}

.why-desc {
  font-size: 1vw;
  line-height: 140%;
  color: #231f20;
  margin-bottom: auto;
}

.why-card-dark .why-desc {
  color: #fff;
}

.why-card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 1.1vw 2.5vw;
  font-size: 0.9vw;
  height: auto;
  margin-top: 3vw;
}

.stat-card {
  position: relative;
  border-radius: 1.56vw;
  padding: 1.56vw;
  min-height: 19.79vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.blue-bg {
  background-color: #1837da;
}

.stat-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.stat-big {
  font-size: 4vw;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-bottom: auto;
}

.stat-text {
  font-size: 1.25vw;
  position: relative;
  z-index: 2;
  min-height: 3vw;
}

.testimonials-section {
  margin-bottom: 8vw;
  overflow: hidden;
}

.similar-products-section {
  margin-bottom: 6vw;
  overflow: hidden;
}

.main--product .similar-products-section {
  margin-top: 2rem;
  padding-top: 4rem;
  border-top: 1px solid #eee;
}

.similar-products-slider {
  overflow: visible;
  padding-bottom: 2.08vw;
  margin-bottom: 1.04vw;
}

.similar-products-slider .swiper-wrapper {
  display: flex;
}

.similar-products-slider .swiper-slide {
  height: auto;
}

.similar-products-section .section-title {
  margin-bottom: 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.08vw;
}

.slider-arrows {
  display: flex;
  gap: 1.04vw;
}

.arrow-btn {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  border: 0.05vw solid #ebebeb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.arrow-btn:hover {
  background: #f0f0f0;
}

.testimonials-slider {
  overflow: visible;
  padding-bottom: 2.08vw;
  margin-bottom: 1.04vw;
}

.testimonials-slider .swiper-wrapper {
  display: flex;
}

.testimonials-slider .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.3s;
  height: auto;
}

.testimonials-slider .swiper-slide-active,
.testimonials-slider .swiper-slide-duplicate-active {
  opacity: 1;
}

.review-card {
  width: 100%;
  background: #fff;
  border-radius: 2.08vw;
  padding: 2.1vw;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid #eee;
}

.review-card.faded {
  opacity: 0.5;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}

.review-avatar {
  width: 3.12vw;
  height: 3.12vw;
  background-color: #d9d9d9;
  border-radius: 50%;
}

.review-author {
  font-weight: 700;
  font-size: 1.2vw;
  font-family: "Geologica", sans-serif;
}

.review-text {
  font-size: 1vw;
  line-height: 1.6;
  color: #303030;
}

.testimonials-footer {
  display: flex;
  justify-content: center;
}

.partners-section {
  margin-bottom: 8vw;
}

.partners-page-section {
  padding: 3.12vw 0 4.5vw;
}

.partners-section .container {
  margin-bottom: 2.08vw;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.04vw;
}

.partners-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  width: 100%;
  overflow: hidden;
}

.partners-row {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 1.04vw;
  width: fit-content;
  animation: marquee 30s linear infinite;
}

.partners-track-reverse {
  animation: marquee-reverse 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.partner-logo {
  width: 8.49vw;
  height: 5.73vw;
  background: #fff;
  border: 0.05vw solid #dbdbdb;
  border-radius: 1.56vw;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
}

.footer-form-section {
  padding-bottom: 4.17vw;
}

.footer-consult-card {
  background: linear-gradient(95deg, #e7f5fe 0%, #b2dcff 100%);
}

.footer-form-section {
  padding-bottom: 4.17vw;
}

.footer-consult-card {
  background: linear-gradient(95deg, #e7f5fe 0%, #b2dcff 100%);
}

body {
  font-family: var(--font-main);
  background-color: white;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 76.8vw;
  margin: 0 auto;
  padding: 0 1.04vw;
}

.faq-section {
  position: relative;
  padding: 3.12vw 0 4.5vw;
}

.faq-section .section-title {
  margin-bottom: 2.08vw;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.78vw;
  max-width: 56vw;
}

.faq-item {
  background: #fff;
  border-radius: 1.04vw;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(24, 55, 218, 0.2);
  box-shadow: 0 0.3vw 1.5vw rgba(24, 55, 218, 0.08);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.04vw;
  padding: 1.25vw 1.56vw;
  text-align: left;
  background: transparent;
  font-family: "Geologica", sans-serif;
  font-size: 1.04vw;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.faq-item__trigger:hover {
  color: var(--primary-blue);
}

.faq-item.is-open .faq-item__trigger {
  color: var(--primary-blue);
}

.faq-item__question-text {
  flex: 1;
  min-width: 0;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 0.9vw;
  height: 0.9vw;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.35vw;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(225deg);
  margin-top: 0.2vw;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer {
  padding: 0 1.56vw 1.35vw;
  font-size: 0.94vw;
  line-height: 1.55;
  color: var(--text-black);
}

.faq-item__answer p {
  margin: 0 0 0.78vw;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-empty {
  font-size: 0.94vw;
  color: var(--text-gray);
  padding: 2vw 0;
}

button {
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
}

.main-header {
  width: 100%;
  max-width: 92vw;
  position: sticky;
  top: 0.7vw;
  z-index: 100;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65vw 1.6vw;
  height: auto;
  margin: 0.7vw auto;
  border-radius: 2.6vw;
  box-shadow: 0 0.3vw 1.5vw rgba(0, 0, 0, 0.07);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.main-header.is-scrolled {
  box-shadow: 0 0.3vw 2vw rgba(0, 0, 0, 0.1);
}

.main-header.header-overlay {
  position: absolute;
  top: 0.7vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: transparent;
  box-shadow: none;
}

.main-header.header-overlay .nav-item {
  color: #fff;
}

.main-header.header-overlay .nav-item:hover,
.main-header.header-overlay .nav-item-wrapper:hover>.nav-item {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.main-header.header-overlay .nav-item img {
  filter: none;
  opacity: 0.7;
}

.main-header.header-overlay .logo-img {
  filter: brightness(0) invert(1);
}

.main-header.header-overlay .header-phone {
  color: #fff;
}

.main-header.header-overlay .header-phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.main-header.header-overlay .header-phone svg path {
  fill: #fff;
}

.main-header.header-overlay .icon-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.main-header.header-overlay .icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.main-header.header-overlay .icon-btn svg path {
  fill: #fff;
}

.main-header.header-overlay .btn-login {
  background: #fff;
  color: var(--primary-blue);
}

.main-header.header-overlay .btn-login:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.main-header.header-overlay.is-scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 0.3vw 2vw rgba(0, 0, 0, 0.1);
}

.main-header.header-overlay.is-scrolled .nav-item {
  color: var(--text-dark);
}

.main-header.header-overlay.is-scrolled .nav-item:hover,
.main-header.header-overlay.is-scrolled .nav-item-wrapper:hover>.nav-item {
  color: var(--primary-blue);
  background: rgba(24, 55, 218, 0.06);
}

.main-header.header-overlay.is-scrolled .nav-item img {
  filter: brightness(0);
}

.main-header.header-overlay.is-scrolled .logo-img {
  filter: none;
}

.main-header.header-overlay.is-scrolled .header-phone {
  color: var(--text-dark);
}

.main-header.header-overlay.is-scrolled .header-phone:hover {
  color: var(--primary-blue);
  background: rgba(24, 55, 218, 0.06);
}

.main-header.header-overlay.is-scrolled .header-phone svg path {
  fill: var(--text-dark);
}

.main-header.header-overlay.is-scrolled .icon-btn {
  background: var(--bg-light);
  border-color: rgba(0, 0, 0, 0.06);
}

.main-header.header-overlay.is-scrolled .icon-btn svg path {
  fill: var(--text-dark);
}

.main-header.header-overlay.is-scrolled .btn-login {
  background: var(--primary-blue);
  color: #fff;
}

.main-header.header-overlay.is-scrolled .btn-login:hover {
  background: #122bb0;
  box-shadow: 0 4px 20px rgba(24, 55, 218, 0.35);
}

.header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
}

.logo-img {
  width: 11.8vw;
  height: auto;
  transition: opacity 0.3s ease, filter 0.4s ease;
}

.logo-bg:hover .logo-img {
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 0.1vw;
  align-items: center;
  position: relative;
  justify-content: center;
}

.nav-item-wrapper {
  position: relative;
}

.nav-item {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.82vw;
  font-weight: 460;
  display: flex;
  align-items: center;
  gap: 0.3vw;
  white-space: nowrap;
  cursor: pointer;
  padding: 0.5vw 0.8vw;
  border-radius: 1.6vw;
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-item:hover,
.nav-item-wrapper:hover>.nav-item {
  color: var(--primary-blue);
  background: rgba(24, 55, 218, 0.06);
}

.nav-item img {
  width: 0.55vw;
  height: 0.55vw;
  opacity: 0.4;
  filter: brightness(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, filter 0.4s ease;
}

.nav-item-wrapper:hover .nav-item img {
  transform: rotate(180deg);
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6vw);
  left: 50%;
  transform: translateX(-50%) translateY(0.5vw);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.2vw;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04);
  min-width: 15vw;
  padding: 0.45vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
}

.nav-item-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.62vw 1vw;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.76vw;
  font-weight: 420;
  line-height: 1.5;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  border-radius: 0.8vw;
}

.dropdown-item:not(:last-child) {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(24, 55, 218, 0.06);
  color: var(--primary-blue);
  padding-left: 1.1vw;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.45vw;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
  font-size: 0.78vw;
  font-weight: 480;
  padding: 0.45vw 0.8vw;
  border-radius: 1.6vw;
}

.header-phone:hover {
  color: var(--primary-blue);
  background: rgba(24, 55, 218, 0.06);
}

.header-phone svg {
  width: 1vw;
  height: 1vw;
  opacity: 0.6;
  flex-shrink: 0;
}

.icon-btn {
  width: 2.3vw;
  height: 2.3vw;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.icon-btn:hover {
  background: rgba(24, 55, 218, 0.08);
  border-color: rgba(24, 55, 218, 0.15);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 1vw;
  height: 1vw;
}

.icon-btn svg path {
  fill: var(--text-dark);
}

.btn-login {
  background: var(--primary-blue);
  color: #fff;
  border-radius: 2vw;
  padding: 0.65vw 1.4vw;
  font-weight: 520;
  font-size: 0.76vw;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-login:hover {
  background: #122bb0;
  box-shadow: 0 4px 20px rgba(24, 55, 218, 0.35);
  transform: translateY(-1px);
}

#section-company-info {
  position: relative;
  padding-top: 3.12vw;
  padding-bottom: 3.12vw;
}

.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
}

.blob-1 {
  top: 56.77vw;
  left: 55.94vw;
}

.blob-2 {
  top: 106.61vw;
  left: 29.58vw;
}

.info-block {
  margin-bottom: 4.17vw;
}

.section-title {
  font-weight: 700;
  font-size: 2.2vw;
  color: var(--text-dark);
  margin-bottom: 2vw;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
  line-height: 120%;
}

.text-content {
  font-size: 0.94vw;
  line-height: 1.5;
  color: var(--text-black);
  max-width: 76.04vw;
}

.text-content p {
  margin-bottom: 1.04vw;
}

.page-standard-section {
  padding: 3.12vw 0 4vw;
}

.page-standard-thumb {
  margin-bottom: 1.56vw;
  border-radius: 1.04vw;
  overflow: hidden;
}

.page-standard-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.pre-line {
  white-space: pre-line;
}

#section-contact-cta {
  padding-bottom: 8vw;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(180deg, #e7f5fe 0%, #b2dcff 100%);
  border-radius: 2.08vw;
  padding: 2.92vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 19.22vw;
}

.satellite-img {
  position: absolute;
  top: -4.84vw;

  left: 19.69vw;
  width: 23.96vw;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.cta-left {
  position: relative;
  z-index: 3;
  max-width: 31.25vw;
}

.icon-box {
  margin-bottom: 1.46vw;
}

.header-actions__desktop {
  display: flex;
  gap: 0.6vw;
  align-items: center;
}

.icon-bg {
  width: 5.73vw;
  height: 5.73vw;
  background-color: var(--primary-blue);
  border-radius: 1.04vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg img {
  width: 3.49vw;
  height: 3.18vw;
}

.cta-text h3 {
  font-size: 2.19vw;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 1.25vw;
  font-family: "Geologica", sans-serif;
}

.cta-text p {
  font-size: 1.04vw;
  color: rgba(35, 31, 32, 0.8);
}

.cta-right {
  position: relative;
  z-index: 3;
  width: 21.88vw;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.94vw;
}

.form-input {
  width: 100%;
  height: 3.54vw;
  border-radius: 2.08vw;
  border: none;
  padding: 0 1.5vw;
  font-size: 1vw;
  color: #888;
  background: white;
  text-align: center;
}

.form-input::placeholder {
  color: #888;
}

.submit-btn {
  width: 100%;
  height: 3.54vw;
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 2.60vw;
  font-size: 0.83vw;
  font-weight: 600;
  transition: background 0.3s;
  font-family: "Geologica", sans-serif;
}

.submit-btn:hover {
  background-color: #1229a3;
}

#section-footer {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 3.65vw 0;
}

.footer-container {
  max-width: 76.8vw;
  margin: 0 auto;
  padding: 0 1.04vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.08vw;
}

.footer-col {
  flex: 1;
  min-width: 10.42vw;
}

.col-info {
  max-width: 16.15vw;
}

.footer-logo {
  margin-bottom: 1.04vw;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo-img {
  width: 11.8vw;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 0.8;
}

.footer-details h4 {
  font-size: 0.83vw;
  margin-bottom: 0.52vw;
}

.footer-details p {
  font-size: 0.83vw;
  line-height: 1.4;
  margin-bottom: 0.52vw;
}

.footer-col h3 {
  font-size: 0.73vw;
  font-weight: 700;
  margin-bottom: 1.56vw;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
}

.col-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col-links li {
  margin-bottom: 0.78vw;
}

.col-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.73vw;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.col-links a:hover {
  opacity: 1;
}

.col-contacts .contact-group {
  margin-bottom: 1.04vw;
}

.col-contacts .city {
  font-size: 0.73vw;
  margin-bottom: 0.26vw;
  opacity: 0.8;
}

.col-contacts .phone {
  font-size: 0.94vw;
  font-weight: 600;
}

.testimonials-section .swiper {
  overflow: visible;
  margin-bottom: 0;
}

.testimonials-slider .swiper-slide.swiper-slide-visible {
  opacity: 1;
}

.testimonials-footer .btn.btn-primary,
.cases-footer .btn.btn-primary,
.catalog-footer .btn.btn-primary {
  height: 4.2vw;
  width: 15vw;
}

.testimonials-section .section-title {
  margin-bottom: 0;
}

.product-price {
  display: none;
}

.icon-btn svg {
  width: 1.25vw;
  height: 1.25vw;
}

.nav-item img,
.nav-item svg {
  width: 0.6vw;
}

.arrow-btn img,
.arrow-btn svg {
  width: 1.25vw;
  height: 1.25vw;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.3vw;
  font-size: 0.9vw;
  color: var(--text-gray);
}

.breadcrumbs a:hover {
  color: var(--primary-blue);
}

.breadcrumbs__item {
  font-size: inherit;
  font-weight: 500;
  padding: 0.3vw 0.5vw;
  background: #f7f8fa;
  border-radius: 10px;
}

.section-breadcrumbs {
  margin-bottom: 2vw;
  padding-top: 0.5vw;
}

.catalog__content {
  width: 100%;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7vw;
  width: 100%;
}

.catalog__wrapper {
  display: flex;
  gap: 2.7vw;
}

.catalog__sidebar {
  min-width: 17vw;
  width: 17vw;
}

.filter {
  background: #f7f8fa;
  border-radius: 2vw;
  padding: 2.08vw;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.filter__section {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-bottom: 1.3vw;
}

.filter__title {
  font-size: 1.04vw;
  font-weight: 700;
  color: #231f20;
  font-family: "Geologica", sans-serif;
  margin: 0;
}

.filter__options {
  display: flex;
  flex-direction: column;
  gap: 0.7vw;
}

.filter__checkbox {
  display: flex;
  align-items: center;
  gap: 0.78vw;
  cursor: pointer;
  position: relative;
}

.filter__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter__checkbox-custom {
  width: 1vw;
  height: 1vw;
  border: 0.1vw solid #E2E2E2;
  border-radius: 0.21vw;
  background: #E2E2E2;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.filter__checkbox input[type="checkbox"]:checked+.filter__checkbox-custom {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.filter__checkbox input[type="checkbox"]:checked+.filter__checkbox-custom::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.36vw;
  height: 0.52vw;
  border: solid white;
  border-width: 0 0.13vw 0.13vw 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.filter__checkbox-label {
  font-size: 0.75vw;
  color: #231f20;
  line-height: 1.4;
}

.filter__link {
  display: block;
  font-size: 0.75vw;
  color: #231f20;
  line-height: 1.4;
  padding: 0.2vw 0;
  text-decoration: none;
  transition: color 0.2s;
}

.filter__link:hover {
  color: var(--primary-blue);
}

.catalog__content .products.catalog__grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter__price {
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
}

.filter__price-inputs {
  display: flex;
  align-items: center;
  gap: 0.52vw;
}

.filter__price-input {
  flex: 1;
  padding: 0.5vw 0.85vw;
  border: none;
  border-radius: 2vw;
  font-size: 0.75vw;
  color: #231f20;
  text-align: center;
  background: #E2E2E2;
  max-width: 5vw;
}

.filter__price-separator {
  font-size: 0.83vw;
  color: #231f20;
  font-weight: 500;
}

#price-slider {
  margin: 0;
}

.filter__actions {
  display: flex;
  gap: 0.4vw;
  margin-top: 0.52vw;
}

.filter__btn {
  flex: 1;
  padding: 0.94vw 1.56vw;
  border: none;
  border-radius: 2.08vw;
  font-size: 0.83vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Geologica", sans-serif;
}

.filter__btn-reset {
  background: #f6f7f8;
  color: #231f20;
  font-size: 0.75vw;
  padding: 0.6vw 1vw;
}

.filter__btn-reset:hover {
  background: #e8e8e8;
}

.filter__btn-submit {
  background: var(--primary-blue);
  color: #fff;
  font-size: 0.75vw;
  padding: 0.6vw 1vw;
}

.filter__btn-submit:hover {
  background: #122bb0;
}

.ui-slider {
  position: relative;
  height: 0.42vw;
  background: #e8e8e8;
  border-radius: 0.21vw;
  border: none;
  margin-top: 0.52vw;
}

.ui-slider-handle {
  position: absolute !important;
  width: 1.46vw !important;
  height: 1.46vw !important;
  background: #fff !important;
  border: 0.13vw solid var(--primary-blue) !important;
  border-radius: 50%;
  cursor: pointer !important;
  top: 50% !important;
  transform: translateY(-50%);
  margin-left: -0.73vw !important;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.2s ease;
}

.ui-slider-handle:hover,
.ui-slider-handle:focus {
  border-color: #122bb0;
  box-shadow: 0px 4px 12px rgba(24, 55, 218, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.ui-slider-handle:active {
  transform: translateY(-50%) scale(1.05);
}

.ui-slider-range {
  position: absolute;
  height: 100%;
  background: var(--primary-blue);
  border-radius: 0.21vw;
  top: 0;
}

.page__title {
  font-family: "Geologica", sans-serif;
  text-transform: uppercase;
  font-size: 2.6vw;
  margin-bottom: 2vw;
  color: #2D2C30;
  font-weight: 900;
}

.catalog {
  margin-bottom: 7vw;
}

.product__about .services-tabs {
  margin-bottom: 1vw;
}

.product__description {
  margin-bottom: 2.08vw;
  line-height: 140%;
  font-size: 0.9vw;
}

.product__wc-description {
  margin-top: 2.08vw;
  margin-bottom: 0;
  font-size: 0.94vw;
  line-height: 1.5;
  color: #303030;
}

.product__wc-description p {
  margin: 0 0 1vw;
}

.product__wc-description p:last-child {
  margin-bottom: 0;
}

.product__wc-description table {
  width: 100%;
  max-width: 100%;
  margin: 1.5vw 0;
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  border-radius: 0.52vw;
  overflow: hidden;
  font-size: 0.9vw;
}

.product__wc-description th,
.product__wc-description td {
  padding: 0.78vw 1.04vw;
  border: 1px solid #e8e8e8;
  text-align: left;
  vertical-align: top;
}

.product__wc-description th {
  background: #f5f6f8;
  font-weight: 600;
  color: #231f20;
}

.product__wc-description tr:nth-child(even) td {
  background: #fafafa;
}

.product__wc-description tr:hover td {
  background: #f5f6f8;
}

.product__price {
  display: none;
}

.main--product .product__price {
  display: block;
}

.product__content-block {
  width: 100%;
  margin: 4rem 0 0;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.product__content-block h2 {
  font-family: "Geologica", sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 2em 0 0.75em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--primary-blue);
  display: inline-block;
}

.product__content-block h2:first-child {
  margin-top: 0;
}

.product__content-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5em 0 0.5em;
  color: var(--text-dark);
}

.product__content-block p,
.product__content-block ul,
.product__content-block ol,
.product__content-block ul li,
.product__content-block ol li,
.service-detail-block__body p,
.service-detail-block__body ul,
.service-detail-block__body ol,
.service-detail-block__body ul li,
.service-detail-block__body ol li {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.product__content-block p,
.service-detail-block__body p {
  margin: 0 0 0.75em;
}

.product__content-block ul,
.product__content-block ol,
.service-detail-block__body ul,
.service-detail-block__body ol {
  margin: 0.75em 0 1em;
  padding-left: 1.25em;
}

.product__content-block ul li,
.product__content-block ol li,
.service-detail-block__body ul li,
.service-detail-block__body ol li {
  margin-bottom: 0.35em;
}

.product__content-block ul li:last-child,
.product__content-block ol li:last-child,
.service-detail-block__body ul li:last-child,
.service-detail-block__body ol li:last-child {
  margin-bottom: 0;
}

.product__content-block table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

.product__content-block th,
.product__content-block td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.product__content-block th {
  background: #f7f8fa;
  font-weight: 600;
  color: var(--text-dark);
}

.product__content-block tr:last-child td {
  border-bottom: none;
}

.product__content-block tr:nth-child(even) td {
  background: #fafbfc;
}

.catalog__pagination {
  margin-top: 3.12vw;
  padding: 1.5vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog__pagination .woocommerce-pagination {
  margin: 0;
}

.catalog__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog__pagination .page-numbers li {
  margin: 0;
  padding: 0;
}

.catalog__pagination .page-numbers a,
.catalog__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6vw;
  height: 2.6vw;
  padding: 0 0.6vw;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #231f20;
  text-decoration: none;
  font-size: 0.94vw;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: "Geologica", sans-serif;
}

.catalog__pagination .page-numbers a:hover {
  background: #f5f6f8;
  border-color: #d0d3d9;
  color: var(--primary-blue);
}

.catalog__pagination .page-numbers span.current {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  cursor: default;
}

.catalog__pagination .page-numbers .prev,
.catalog__pagination .page-numbers .next {
  font-size: 1.1vw;
  line-height: 1;
}

.catalog__pagination .page-numbers .prev:hover,
.catalog__pagination .page-numbers .next:hover {
  color: var(--primary-blue);
}

.catalog__pagination .page-numbers .dots {
  border: none;
  background: transparent;
  cursor: default;
  min-width: auto;
  padding: 0 0.2vw;
}

.catalog__pagination .page-numbers .dots:hover {
  background: transparent;
  color: #231f20;
}

.pagination__btn,
.pagination__page {
  width: 3.12vw;
  height: 3.12vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  color: #231f20;
  text-decoration: none;
  font-size: 0.94vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Geologica", sans-serif;
}

.pagination__btn {
  border: 0.05vw solid #ebebeb;
}

.pagination__btn img {
  width: 0.78vw;
  height: 0.78vw;
}

.pagination__btn:hover {
  background: #f6f7f8;
  border-color: #dbdbdb;
}

.pagination__page {
  border: 0.05vw solid transparent;
}

.pagination__page:hover {
  background: #f6f7f8;
}

.pagination__page--active {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.pagination__page--active:hover {
  background: var(--primary-blue);
}

.filter__maintitle {
  font-size: 1.25vw;
  font-weight: 700;
  color: #231f20;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
  margin-bottom: 1vw;
}

.product {
  margin-bottom: 7vw;
}

.product--single {
  margin-bottom: 6vw;
}

.product__wrapper--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: start;
  margin-bottom: 5vw;
  padding-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product--single .product__gallery {
  width: 100%;
  max-width: none;
}

.product__image-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-height: 32vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5vw;
  border-radius: 1.04vw;
  background-color: #f8f9fa;
  background-image: linear-gradient(45deg, #eee 25%, transparent 25%), linear-gradient(-45deg, #eee 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #eee 75%), linear-gradient(-45deg, transparent 75%, #eee 75%);
  background-size: 1.04vw 1.04vw;
  background-position: 0 0, 0 0.52vw, 0.52vw -0.52vw, -0.52vw 0;
  background-repeat: repeat;
  border: 1px solid rgba(48, 48, 48, 0.08);
}

.product--single .product__image-wrap {
  padding: 3vw;
  border-radius: 1.25vw;
  background: white;
  background-image: none;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  max-height: none;
}

.product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product__title {
  font-family: "Geologica", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  color: #231f20;
  margin: 0 0 1vw;
  line-height: 1.2;
}

.product--single .product__title {
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  margin-bottom: 0.8vw;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product__meta {
  font-size: 0.94vw;
  color: #303030;
  margin-bottom: 1.5vw;
}

.product--single .product__meta {
  margin-bottom: 1.2vw;
  font-size: 0.9vw;
}

.product__meta-label {
  font-weight: 400;
}

.product__meta-value {
  font-weight: 600;
  color: var(--primary-blue, #1837DA);
}

.product__description {
  flex: 1;
  margin-bottom: 2vw;
  overflow-y: auto;
  max-height: 22vw;
}

.product--single .product__description {
  overflow-y: visible;
  max-height: none;
  margin-bottom: 1.8vw;
}

.product__description p {
  font-size: 1vw;
  line-height: 1.65;
  color: #303030;
  margin: 0 0 0.8vw;
  font-weight: 400;
}

.product--single .product__description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 0.6em;
}

.product__description p:last-child {
  margin-bottom: 0;
}

.product__actions {
  display: flex;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.5vw;
  border-top: 1px solid rgba(48, 48, 48, 0.1);
}

.product--single .product__actions {
  padding-top: 1.8vw;
  border-top-color: #eee;
  gap: 1.5vw;
}

.product__price {
  font-size: 2vw;
  font-weight: 700;
  color: #231f20;
  margin: 0;
  font-family: "Geologica", sans-serif;
}

.product--single .product__price {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  display: block;
}

.product__order-btn {
  padding: 1.04vw 2.6vw;
  font-size: 1vw;
  min-height: 3.5vw;
  flex-shrink: 0;
}

.product--single .product__order-btn {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  min-height: 48px;
  border-radius: 2rem;
}

.product__about_content {
  padding: 2vw;
  background: white;
  border-radius: 2vw;
  font-size: 1vw;
}

.product__about_content p {
  font-size: 1vw;
  margin-bottom: 1vw;
}

.product__about_content ul {
  margin-bottom: 1vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  padding: 0;
  padding-left: 2vw;
}

.product__about_tabs {
  position: relative;
}

.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: block;
}

.product__specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product__specs-table tr {
  border-bottom: 0.05vw solid #e8e8e8;
}

.product__specs-table tr:last-child {
  border-bottom: none;
}

.product__specs-table td {
  padding: 0.94vw 0;
  font-size: 1vw;
  color: #231f20;
  line-height: 1.5;
}

.product__specs-table td:first-child {
  font-weight: 500;
  width: 40%;
}

.product__specs-table td:last-child {
  color: #303030;
}

.contacts {
  background-color: white;
  padding: 4vw 0;
}

.contacts-block,
.requisites-block {
  margin-bottom: 7vw;
}

.contacts-block .section-title,
.requisites-block .section-title {
  margin-bottom: 2.08vw;
}

.city-tabs {
  display: flex;
  gap: 0.78vw;
  margin-bottom: 2.08vw;
}

.city-tab {
  padding: 0.78vw 1.56vw;
  border-radius: 2vw;
  background-color: white;
  border: none;
  font-size: 0.9vw;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-main);
}

.city-tab.active {
  background-color: var(--primary-blue);
  color: var(--text-white);
}

.city-tab:hover:not(.active) {
  background-color: #d0d0d0;
}

.contacts-content {
  display: flex;
  gap: 2.08vw;
  align-items: flex-start;
  justify-content: space-between;
}

.contacts-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.56vw;
}

.contact-city-content {
  display: none;
  flex-direction: column;
  gap: 1.56vw;
}

.contact-city-content.active {
  display: flex;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.04vw;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.1vw;
}

.contact-text {
  font-size: 1vw;
  color: var(--text-dark);
  line-height: 1.5;
  text-decoration: none;
}

.contact-text:hover {
  color: var(--primary-blue);
}

.contact-department {
  display: flex;
  gap: 3vw;
  margin-top: 0.5vw;
}

.department-item {
  display: flex;
  align-items: flex-start;
  gap: 1.04vw;
}

.department-info {
  display: flex;
  flex-direction: column;
  gap: 0.26vw;
}

.department-name {
  font-size: 1vw;
  font-weight: 700;
  color: #303030;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
}

.contacts-map {
  flex: 1;
  height: 24vw;
  border-radius: 2.08vw;
  overflow: hidden;
  background-color: #e8e8e8;
  max-width: 41.3vw;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.requisites-content {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.requisites-item {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 2.08vw;
  align-items: start;
  padding-bottom: 0.2vw;
  border-bottom: 0.05vw solid #e8e8e8;
}

.requisites-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.requisites-label {
  font-size: 1vw;
  font-weight: 500;
  color: var(--text-dark);
}

.requisites-value {
  font-size: 1vw;
  color: var(--text-dark);
  line-height: 1.5;
}

.department-item .contact-text {
  display: flex;
  align-items: center;
  gap: 0.6vw;
}

.department-item .contact-text svg {
  width: 1.25vw;
  min-width: 1.25vw;
  height: 1.25vw;
}

.contact-item svg {
  width: 1.25vw;
  min-width: 1.25vw;
  height: 1.25vw;
}

.work {
  background-color: var(--bg-light);
  padding: 4vw 0;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.12vw;
}

.work-header .section-title {
  margin-bottom: 0;
}

.work-header .city-tabs {
  margin-bottom: 0;
}

.vacancies-list {
  display: flex;
  flex-direction: column;
  gap: 1.56vw;
}

.vacancy-card {
  background-color: #fff;
  border-radius: 2.08vw;
  overflow: hidden;
  box-shadow: 0px 2px 6px rgba(17, 17, 17, 0.1);
  transition: all 0.3s;
}

.vacancy-card.hidden {
  display: none;
}

.vacancy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.56vw 2.08vw;
  cursor: pointer;
  transition: background-color 0.3s;
}

.vacancy-header:hover {
  background-color: #f5f5f5;
}

.vacancy-title {
  font-size: 1.25vw;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.vacancy-arrow {
  width: 1.56vw;
  height: 1.56vw;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.vacancy-card.active .vacancy-arrow {
  transform: rotate(90deg);
}

.vacancy-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2.08vw;
}

.vacancy-card.active .vacancy-content {
  max-height: 2000px;
  padding: 0 2.08vw 2.08vw 2.08vw;
  transition: max-height 0.5s ease-in, padding 0.3s;
}

.vacancy-salary {
  font-size: 1.1vw;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.56vw;
  padding-top: 1.56vw;
}

.vacancy-info {
  display: flex;
  flex-direction: column;
  gap: 0.78vw;
  margin-bottom: 2.08vw;
  padding-bottom: 2.08vw;
  border-bottom: 0.05vw solid #e8e8e8;
}

.vacancy-info-item {
  display: flex;
  gap: 1.04vw;
  font-size: 1vw;
  color: var(--text-dark);
}

.info-label {
  font-weight: 500;
  min-width: 8vw;
}

.info-value {
  color: #303030;
}

.vacancy-section {
  margin-bottom: 2.08vw;
}

.vacancy-section:last-child {
  margin-bottom: 0;
}

.vacancy-section-title {
  font-size: 1.1vw;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.04vw;
  font-family: var(--font-main);
}

.vacancy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.78vw;
}

.vacancy-list li {
  font-size: 1vw;
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  padding-left: 1.56vw;
}


.we-offer-section {
  padding: 0;
  margin-bottom: 8vw;
}

.we-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.08vw;
}

.we-offer-card {
  position: relative;
  border-radius: 2.08vw;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.3vw 1.6vw;
  box-shadow: 0px 4px 12px rgba(17, 17, 17, 0.15);
}

.we-offer-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: 0;
  background-image: url('/wp-content/themes/glonas/images/service-image-1.png');
}

.we-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1A47A9;
  opacity: 0.85;
  z-index: 1;
}

.we-offer-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.we-offer-card-title {
  font-size: 2vw;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2vw;
  text-transform: uppercase;
  font-family: var(--font-main);
  min-height: 4.4vw;
}

.we-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  flex: 1;

}

.we-offer-item {
  background-color: rgba(173, 216, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 2.6vw;
  padding: 0.7vw 1.2vw;
  font-size: 1vw;
  color: #ffffff;
  line-height: 1.5;
  font-family: var(--font-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-detail-section {
  padding: 0 0 4vw;
}

.service-detail-section .service-detail-blocks {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.service-detail-block__body p:last-child {
  margin-bottom: 0;
}

.fuel-methods-section {
  padding: 0 0 4vw;
}

.fuel-methods-section .section-title {
  margin-bottom: 1.2vw;
}

.fuel-methods-section__intro {
  font-size: 1.04vw;
  line-height: 1.55;
  color: #444;
  max-width: 52vw;
  margin: 0 0 2vw;
}

.fuel-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}

.fuel-method-card {
  background: #fff;
  border-radius: 1.25vw;
  padding: 1.8vw;
  border: 1px solid rgba(0, 96, 195, 0.1);
  box-shadow: 0 0.25vw 1vw rgba(0, 40, 100, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  min-height: 100%;
}

.fuel-method-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.fuel-method-card__num {
  font-family: "Geologica", sans-serif;
  font-size: 2vw;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 96, 195, 0.15);
}

.fuel-method-card__badge {
  display: inline-block;
  padding: 0.35vw 0.75vw;
  border-radius: 2vw;
  background: linear-gradient(180deg, #e8f3ff 0%, #d4e8ff 100%);
  color: var(--primary-blue);
  font-size: 0.85vw;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
  max-width: 55%;
}

.fuel-method-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.35vw;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.fuel-method-card__text {
  font-size: 1vw;
  line-height: 1.55;
  color: #444;
  margin: 0;
  flex: 1;
}

.service-dual-section {
  padding: 0 0 4vw;
}

.service-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5vw;
  align-items: stretch;
}

.service-dual-col {
  background: #fff;
  border-radius: 1.25vw;
  padding: 2vw;
  border: 1px solid rgba(0, 96, 195, 0.1);
  box-shadow: 0 0.25vw 1vw rgba(0, 40, 100, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-top: 0;
}

.service-dual-col__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.35vw;
  font-weight: 700;
  margin: 0 0 0.5vw;
  line-height: 1.3;
  color: var(--text-dark);
}

.service-dual-col__body {
  flex: 1;
  font-size: 0.95vw;
  line-height: 1.55;
  color: #444;
}

.service-dual-col__body h3 {
  font-size: 1.05vw;
  margin: 1.2vw 0 0.5vw;
}

.service-dual-col__body ul,
.service-dual-col__body ol {
  margin: 0.5vw 0 1vw;
  padding-left: 1.2vw;
}

.service-dual-col__body li {
  margin-bottom: 0.4vw;
}

.service-dual-col__body p {
  margin: 0 0 0.8vw;
}

.service-dual-col__btn {
  align-self: flex-start;
  margin-top: auto;
}

.service-offers-section {
  padding: 0 0 4vw;
}

.service-offers-section .testimonials-header {
  margin-bottom: 1.2vw;
}

.service-offers-section__intro {
  font-size: 1.04vw;
  line-height: 1.55;
  color: #444;
  max-width: 52vw;
  margin: 0 0 2vw;
}

.service-offer-card {
  background: #fff;
  border-radius: 1.25vw;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 96, 195, 0.08);
  box-shadow: 0 0.25vw 1vw rgba(0, 40, 100, 0.06);
}

.service-offer-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f8ff;
}

.service-offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-offer-card__body {
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75vw;
}

.service-offer-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.2vw;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--text-dark);
}

.service-offer-card__text {
  font-size: 0.95vw;
  line-height: 1.5;
  color: #444;
  margin: 0;
  flex: 1;
}

.service-offer-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

.service-subservices-section {
  padding: 0 0 4vw;
}

.service-subservices-section .section-title {
  margin-bottom: 2vw;
}

.service-subservices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5vw;
}

.service-subservice-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5vw;
  padding: 1.8vw;
  border-radius: 1.25vw;
  background: linear-gradient(180deg, #f3f8ff 0%, #e2efff 100%);
  border: 1px solid rgba(0, 96, 195, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-subservice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.6vw 1.5vw rgba(0, 96, 195, 0.12);
}

.service-subservice-card__title {
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  font-size: 1.35vw;
  color: var(--text-dark);
  margin: 0 0 0.6vw;
  line-height: 1.3;
}

.service-subservice-card__text {
  font-size: 1vw;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.service-subservice-card__btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .fuel-methods-section__intro {
    font-size: 3.7vw;
    max-width: none;
    margin-bottom: 5vw;
  }

  .fuel-methods-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .fuel-method-card {
    padding: 5vw;
    border-radius: 3vw;
    gap: 3vw;
  }

  .fuel-method-card__num {
    font-size: 10vw;
  }

  .fuel-method-card__badge {
    font-size: 3.2vw;
    padding: 1.5vw 3vw;
    max-width: 60%;
  }

  .fuel-method-card__title {
    font-size: 4.5vw;
  }

  .fuel-method-card__text {
    font-size: 3.7vw;
  }

  .service-dual-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .service-dual-col {
    padding: 5vw;
    border-radius: 3vw;
    gap: 3vw;
  }

  .service-dual-col__title {
    font-size: 5vw;
  }

  .service-dual-col__body {
    font-size: 3.5vw;
  }

  .service-dual-col__body h3 {
    font-size: 4vw;
    margin: 4vw 0 2vw;
  }

  .service-offers-section__intro {
    font-size: 3.7vw;
    max-width: none;
    margin-bottom: 5vw;
  }

  .service-offer-card__body {
    padding: 5vw;
    gap: 3vw;
  }

  .service-offer-card__title {
    font-size: 4.5vw;
  }

  .service-offer-card__text {
    font-size: 3.5vw;
  }

  .service-subservices-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .service-subservice-card {
    padding: 5vw;
    border-radius: 3vw;
  }

  .service-subservice-card__title {
    font-size: 4.5vw;
  }

  .service-subservice-card__text {
    font-size: 3.5vw;
  }
}

.implementation-stages-section {
  background-color: transparent;
  padding: 4vw 0;
  margin-bottom: 5vw;
}

.implementation-stages-section .section-title {
  margin-bottom: 3.12vw;
}

.stages-list {
  display: grid;
  gap: 2.6vw;
  margin-bottom: 4vw;
  grid-template-columns: 1fr 1fr;
}

.stage-item {
  display: flex;
  justify-content: space-between;
  gap: 3.12vw;
  position: relative;
  background: white;
  align-items: center;
  padding: 1.9vw;
  border-radius: 2vw;
}

.stage-content {
  flex: 1;
  max-width: calc(100% - 8vw);
}

.stage-title {
  font-size: 1.25vw;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2vw;
  font-family: var(--font-main);
  line-height: 1.4;
  font-family: "Geologica", sans-serif;
}

.stage-description {
  font-size: 1vw;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-main);
}

.stage-number {
  width: 4.7vw;
  height: 4.7vw;
  min-width: 4.7vw;
  min-height: 4.7vw;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.08vw;
  font-weight: 700;
  font-family: var(--font-main);
  flex-shrink: 0;
}

.stages-cta {
  text-align: center;
  padding-top: 2.08vw;
  border-top: 0.05vw solid #e8e8e8;
}

.stages-cta-text {
  font-size: 1.25vw;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-main);
  line-height: 1.5;
}

.solution__row {
  display: flex;
  position: relative;
  justify-content: end;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25vw;
  margin-bottom: 1.5vw;
}

.solution__item {
  font-size: 1.05vw;
  padding: 1vw 1.6vw;
  background: white;
  border-radius: 2.1vw;
  line-height: 140%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.solution__item p {
  margin-bottom: 0.6vw;
}

.solution__image {
  position: absolute;
  top: 2vw;
  left: 0;
  width: 36vw;
  height: 24vw;
  border-radius: 2vw;
}

.solution__content {
  max-width: 50.1vw;
  z-index: 2;
}

.solution__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.solution__button {
  display: flex;
  justify-content: center;
}

.solution-detail-section {
  padding-bottom: 4vw;
  margin-bottom: 3vw;
}

.solution-detail-section .section-title {
  text-align: left;
  margin-bottom: 1.2vw;
}

.solution-detail-section .service-detail-blocks.solution-content {
  margin-top: 2.5vw;
  padding-top: 2.5vw;
  border-top: 1px solid #e8e8e8;
}

.solution-detail-section__cta {
  margin-top: 2.5vw;
}

.solution__intro {
  max-width: 52vw;
  margin: 0 0 0;
  font-size: 1.1vw;
  line-height: 1.55;
  color: #444;
  text-align: left;
}

/* Solution page: structured content blocks */
.solution-content {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.solution-content>.solution-points {
  margin: 0;
  padding: 0;
  border: none;
}

.solution-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}

.solution-point {
  display: flex;
  gap: 1.2vw;
  align-items: flex-start;
  padding: 1.8vw;
  background: #fff;
  border-radius: 1.25vw;
  border: 1px solid rgba(24, 55, 218, 0.1);
  box-shadow: 0 0.35vw 1.2vw rgba(0, 40, 100, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-point:hover {
  border-color: rgba(24, 55, 218, 0.22);
  box-shadow: 0 0.5vw 1.6vw rgba(24, 55, 218, 0.1);
}

.solution-point__num {
  flex-shrink: 0;
  font-family: "Geologica", sans-serif;
  font-size: 2.2vw;
  font-weight: 700;
  line-height: 1;
  color: rgba(24, 55, 218, 0.18);
  min-width: 2.5vw;
}

.solution-point__body {
  flex: 1;
  min-width: 0;
}

.solution-point__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.25vw;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.65vw;
  line-height: 1.35;
}

.solution-point__text {
  font-size: 1vw;
  line-height: 1.6;
  color: #444;
}

.solution-point__text p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.solution-point__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35vw;
  margin-top: 1vw;
  font-size: 0.95vw;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.solution-point__link:hover {
  color: #0e2a9e;
  border-bottom-color: currentColor;
}


.saving-tools {
  padding: 0 0 5vw;
  margin-bottom: 5vw;
}

.saving-tools__card {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 18vw;
  border-radius: 1.67vw;
  overflow: hidden;
  background: linear-gradient(118deg, #232323 0%, #2b2b2b 52%, #1a2550 100%);
  box-shadow: 0 0.8vw 2.5vw rgba(24, 55, 218, 0.12);
  border: 1px solid rgba(24, 55, 218, 0.2);
}

.saving-tools__visual {
  position: relative;
  flex: 0 0 26%;
  min-width: 14vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 1.5vw;
  background: linear-gradient(165deg, var(--primary-blue) 0%, #0e2a9e 55%, #081a5c 100%);
  overflow: hidden;
}

.saving-tools__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 14vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0.6vw 1.2vw rgba(0, 0, 0, 0.35));
}

.saving-tools__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.saving-tools__orb--1 {
  width: 12vw;
  height: 12vw;
  top: -3vw;
  right: -2vw;
  background: rgba(255, 255, 255, 0.12);
}

.saving-tools__orb--2 {
  width: 8vw;
  height: 8vw;
  bottom: -2vw;
  left: -1.5vw;
  background: rgba(255, 140, 0, 0.35);
}

.saving-tools__body {
  flex: 1;
  padding: 2.2vw 2.8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.saving-tools__title {
  font-size: 1.5vw;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.4vw 0;
  font-family: var(--font-main);
  line-height: 1.3;
  padding-left: 0.9vw;
  border-left: 0.28vw solid var(--primary-blue);
}

.saving-tools__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65vw;
  margin-bottom: 1.4vw;
}

.saving-tools__tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  padding: 0.45vw 1.1vw;
  border-radius: 2vw;
  font-size: 0.9vw;
  font-weight: 500;
  font-family: var(--font-main);
  border: 1px solid transparent;
}

.saving-tools__tag--accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 100%);
  color: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.25);
}

.saving-tools__text {
  font-size: 1vw;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 95%;
  font-family: var(--font-main);
}

.saving-tools__highlight {
  background-color: transparent;
  color: #ffb347;
  padding: 0;
}

.team__item {
  background: white;
  display: flex;
  height: 12.1vw;
  border-radius: 2vw;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.team__item__image {
  height: 12.1vw;
  width: 12.1vw;
}

.team__item__content {
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6vw;
}

.team__block {
  margin-bottom: 4.7vw;
}

.team__block_title {
  font-weight: 500;
  font-size: 2.1vw;
  color: var(--text-dark);
  margin-bottom: 2vw;
  font-family: "Geologica", sans-serif;
  line-height: 120%;
}

.team__item__name {
  font-weight: 700;
  font-size: 1.25vw;
  color: var(--text-dark);
  margin-bottom: 2vw;
  font-family: "Geologica", sans-serif;
  line-height: 120%;
}

.team__item__role {
  font-weight: 300;
  font-size: 1vw;
  margin-bottom: 0.1vw;
}

.team__item__mail,
.team__item__mail a {
  color: #1837DA;
  font-size: 0.95vw;
  margin-bottom: 0.5vw;
}

.team__item__phone {
  font-size: 0.95vw;
  color: #303030;
}

.team {
  margin-bottom: 10vw;
}

.docs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2vw;
}

.posad__text img {
  max-width: 50%;
  object-fit: contain;
  margin-bottom: 2vw;
}

.posad__text p {
  font-size: 1vw;
  margin-bottom: 2vw;
  line-height: 150%;
}

.pp2216-page {
  padding: 3vw 0 5vw;
  background: transparent;
}

.pp2216-hero {
  margin-bottom: 3vw;
}

.pp2216-hero__title {
  font-size: 2.08vw;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 1.5vw 0;
  line-height: 1.25;
  font-family: var(--font-main);
}

.pp2216-hero__text {
  font-size: 1.04vw;
  color: #1d1d1d;
  margin: 0 0 1.2vw;
  line-height: 1.5;
  font-family: var(--font-main);
}

.pp2216-hero__text a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pp2216-hero__text a:hover {
  text-decoration: none;
}

.pp2216-intro-list {
  margin: 0 0 1.2vw 0;
  padding-left: 1.5vw;
  font-size: 1.04vw;
  color: #1d1d1d;
  line-height: 1.65;
  font-family: var(--font-main);
}

.pp2216-intro-list li {
  margin-bottom: 0.35vw;
}

.pp2216-intro-card {
  margin: 1.5vw 0 1.2vw;
  padding: 1.4vw 1.6vw;
  background: #fff;
  border: 1px solid rgba(24, 55, 218, 0.1);
  border-radius: 1.25vw;
  box-shadow: 0 0.45vw 1.4vw rgba(15, 40, 120, 0.06);
}

.pp2216-intro-card__title {
  margin: 0 0 0.6vw;
  font-family: "Geologica", sans-serif;
  font-size: 1.25vw;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.pp2216-intro-card__text {
  margin: 0;
  font-size: 1.04vw;
  line-height: 1.55;
  color: #444;
}

.pp2216-intro-note {
  color: #555;
  font-size: 0.98vw;
}

.pp2216-section {
  margin-bottom: 8vw;
}

.pp2216-section__title {
  font-size: 1.82vw;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 1.2vw 0;
  text-transform: uppercase;
  font-family: var(--font-main);
}

.pp2216-section__intro,
.pp2216-section__text {
  font-size: 1.04vw;
  color: #1d1d1d;
  margin: 0 0 1.2vw 0;
  line-height: 1.5;
  font-family: var(--font-main);
}

.pp2216-section__text {
  margin-bottom: 0;
}

.pp2216-categories {
  display: flex;
  /* flex-direction: column; */
  gap: 1.2vw;
  margin: 0 0 1.2vw;
}

.pp2216-category {
  display: flex;
  align-items: center;
  gap: 2vw;
  padding: 2vw;
  background: #fff;
  border-radius: 2vw;
  border: 1px solid rgba(24, 55, 218, 0.1);
  flex-direction: column;
}

.pp2216-category__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 80%;
}

.pp2216-category__name {
  font-size: 1.14vw;
  font-weight: 700;
  color: #1d1d1d;
  font-family: var(--font-main);
  margin-bottom: 0.5vw;
}

.pp2216-category__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.pp2216-category__desc {
  flex: 1;
  font-size: 1vw;
  color: #1d1d1d;
  line-height: 1.5;
  font-family: var(--font-main);
}

.pp2216-equipment-list {
  margin: 0 0 1.5vw;
  padding-left: 1.5vw;
  font-size: 1.04vw;
  color: #1d1d1d;
  line-height: 1.7;
  font-family: var(--font-main);
}

.pp2216-equipment-list li {
  margin-bottom: 0.25vw;
}

.pp2216-equipment-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5vw;
  margin-bottom: 1.4vw;
  padding: 1.25vw 1.5vw;
  background: #fff;
  border: 1px solid rgba(24, 55, 218, 0.12);
  border-radius: 1.25vw;
}

.pp2216-equipment-cta__text {
  margin: 0;
  flex: 1;
  font-size: 0.98vw;
  line-height: 1.55;
  color: #333;
}

.pp2216-equipment-cta .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.pp2216-equipment-note {
  margin: 0;
  padding: 1.1vw 1.3vw;
  font-size: 0.98vw;
  line-height: 1.55;
  color: #1d1d1d;
  background: rgba(24, 55, 218, 0.04);
  border-left: 3px solid var(--primary-blue);
  border-radius: 0 0.8vw 0.8vw 0;
}

.pp2216-equipment-note a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pp2216-equipment-note a:hover {
  text-decoration: none;
}

.pp2216-fines-table-wrap {
  margin-bottom: 1.2vw;
  overflow-x: auto;
  border: 1px solid rgba(24, 55, 218, 0.1);
  border-radius: 1.1vw;
  background: #fff;
}

.pp2216-fines-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98vw;
  line-height: 1.5;
  color: #333;
}

.pp2216-fines-table th,
.pp2216-fines-table td {
  padding: 0.9vw 1vw;
  border: 1px solid rgba(24, 55, 218, 0.1);
  vertical-align: top;
  text-align: left;
}

.pp2216-fines-table th {
  font-family: "Geologica", sans-serif;
  font-size: 0.95vw;
  font-weight: 600;
  color: #1d1d1d;
  background: rgba(24, 55, 218, 0.06);
}

.pp2216-fines-table__type {
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
}

.pp2216-fines-table__violation {
  min-width: 18vw;
}

.pp2216-fines-table td strong {
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  color: #1d1d1d;
}

.pp2216-fines-table__alt {
  display: block;
  margin-top: 0.25vw;
  font-size: 0.92vw;
  color: #555;
}

.pp2216-fines-text {
  margin-top: 1.2vw;
}

.pp2216-fines-text+.pp2216-fines-text {
  margin-top: 0.6vw;
}

.pp2216-fines-text a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pp2216-fines-text a:hover {
  text-decoration: none;
}

.pp2216-fines-source {
  margin: 0;
  font-size: 0.85vw;
  line-height: 1.5;
  color: #888;
}

.pp2216-fines-source a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pp2216-fines-source a:hover {
  text-decoration: none;
}

.pp2216-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pp2216-links li {
  margin-bottom: 0.8vw;
  font-size: 1.04vw;
  font-family: var(--font-main);
}

.pp2216-links__label {
  color: #1d1d1d;
  margin-right: 0.3em;
}

.pp2216-links a {
  color: var(--primary-blue);
  text-decoration: none;
}

.pp2216-links a:hover {
  text-decoration: underline;
}

.pp2216-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}

.pp2216-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.4vw;
  padding: 1.2vw 1.4vw;
  background: #fff;
  border: 1px solid rgba(24, 55, 218, 0.1);
  border-radius: 1.1vw;
  text-decoration: none;
  box-shadow: 0 0.35vw 1vw rgba(15, 40, 120, 0.04);
}

.pp2216-link-card__label {
  font-family: "Geologica", sans-serif;
  font-size: 1.02vw;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
}

.pp2216-link-card__url {
  font-size: 0.95vw;
  line-height: 1.4;
  color: var(--primary-blue);
  word-break: break-word;
}

.pp2216-hero__subtitle {
  font-size: 1.04vw;
  font-weight: 600;
  color: #1d1d1d;
  margin: 0 0 1vw 0;
  line-height: 1.4;
  font-family: var(--font-main);
}

.pp1378-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: center;
}

.pp1378-hero__content .pp2216-hero__title {
  margin-top: 0;
}

.pp1378-hero__content .pp2216-hero__text:last-child {
  margin-bottom: 0;
}

.pp1378-hero__image {
  border-radius: 1.1vw;
  overflow: hidden;
  box-shadow: 0 0.35vw 1vw rgba(15, 40, 120, 0.08);
}

.pp1378-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pp1378-category-btns {
  display: flex;
  gap: 1.2vw;
  margin: 1.2vw 0;
  flex-wrap: wrap;
}

.pp1378-category-btn {
  flex: 1;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 1.5vw;
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 2vw;
  font-size: 1vw;
  font-weight: 500;
  font-family: var(--font-main);
  text-align: center;
  transition: background-color 0.2s;
}

.pp1378-category-btn:hover {
  background-color: #122bb0;
}

.pp1378-offer-list {
  list-style: none;
  margin: 0 0 1.5vw 0;
  padding: 0;
}

.pp1378-offer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2vw;
  padding: 1vw 1.5vw;
  margin-bottom: 0.8vw;
  background-color: #e8e8e8;
  border-radius: 12px;
  font-size: 1.04vw;
  color: #1d1d1d;
  line-height: 1.4;
  font-family: var(--font-main);
}

.pp1378-offer-item__text {
  flex: 1;
  min-width: 0;
}

.pp1378-offer-item__num {
  flex-shrink: 0;
  width: 2.2vw;
  height: 2.2vw;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1vw;
}

.pp1378-offer-cta {
  display: flex;
  justify-content: center;
  margin-top: 1vw;
}

.pp1378-offer-cta .btn {
  padding: 0.8vw 2vw;
}

.pp1378-duties {
  list-style: none;
  margin: 0 0 1.5vw 0;
  padding: 0;
}

.pp1378-duties li {
  position: relative;
  padding: 1vw 1.2vw 1vw 3.5vw;
  margin-bottom: 0.8vw;
  background: #fff;
  border-radius: 1vw;
  font-size: 1.04vw;
  color: #1d1d1d;
  line-height: 1.5;
}


.pp1378-asn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2vw;
  margin: 1.5vw 0;
}

.pp1378-asn-card {
  padding: 1.4vw;
  background: #fff;
  border-radius: 1.25vw;
  border: 1px solid rgba(0, 96, 195, 0.08);
}

.pp1378-asn-card__title {
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  font-size: 1.15vw;
  color: var(--text-dark);
  margin: 0 0 0.5vw;
  line-height: 1.3;
}

.pp1378-asn-card__meta {
  font-size: 0.95vw;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.pp1378-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65vw;
}

.pp1378-faq-item {
  background: #f7f8fb;
  border-radius: 1.25vw;
  border: 1px solid rgba(24, 55, 218, 0.06);
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pp1378-faq-item[open] {
  background: #fff;
  border-color: rgba(24, 55, 218, 0.1);
}

.pp1378-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2vw;
  padding: 1.15vw 1.4vw;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.02vw;
  color: #333;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.pp1378-faq-item__q:hover {
  color: #1d1d1d;
}

.pp1378-faq-item[open] .pp1378-faq-item__q {
  color: #1d1d1d;
  font-weight: 600;
}

.pp1378-faq-item__q::-webkit-details-marker {
  display: none;
}

.pp1378-faq-item__q::after {
  content: "";
  flex-shrink: 0;
  width: 0.45vw;
  height: 0.45vw;
  margin-top: -0.15vw;
  border-right: 1.5px solid #9aa3b8;
  border-bottom: 1.5px solid #9aa3b8;
  transform: rotate(45deg);
  transition: transform 0.35s ease, border-color 0.3s ease;
}

.pp1378-faq-item[open] .pp1378-faq-item__q::after {
  transform: rotate(225deg);
  margin-top: 0.1vw;
  border-color: var(--primary-blue);
}

.pp1378-faq-item__a {
  padding: 0 1.4vw 1.2vw;
  font-size: 0.96vw;
  color: #555;
  line-height: 1.6;
}

.pp1378-faq-item__a p {
  margin: 0;
}

.pp1378-faq-item__a p:last-child {
  margin-bottom: 0;
}

.pp2216-steps {
  list-style: none;
  margin: 2vw 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp2216-step {
  display: grid;
  grid-template-columns: 4.2vw 1fr;
  gap: 1.4vw;
  padding-bottom: 1.6vw;
  position: relative;
}

.pp2216-step:last-child {
  padding-bottom: 0;
}

.pp2216-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 2.1vw;
  top: 4.4vw;
  bottom: 0.4vw;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(24, 55, 218, 0.45) 0%, rgba(24, 55, 218, 0.08) 100%);
  border-radius: 1px;
}

.pp2216-step__marker {
  display: flex;
  justify-content: center;
  padding-top: 0.15vw;
}

.pp2216-step__number {
  width: 4.2vw;
  height: 4.2vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geologica", sans-serif;
  font-size: 1.35vw;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #2d4ef0 0%, var(--primary-blue) 55%, #0f28a8 100%);
  box-shadow: 0 0.35vw 1vw rgba(24, 55, 218, 0.28);
  position: relative;
  z-index: 1;
}

.pp2216-step__card {
  background: #fff;
  border: 1px solid rgba(24, 55, 218, 0.1);
  border-radius: 1.25vw;
  padding: 1.35vw 1.5vw;
  box-shadow: 0 0.45vw 1.4vw rgba(15, 40, 120, 0.06);
}

.pp2216-step__title {
  margin: 0 0 0.45vw;
  font-family: "Geologica", sans-serif;
  font-size: 1.15vw;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
}

.pp2216-step__text {
  margin: 0;
  font-size: 0.98vw;
  line-height: 1.55;
  color: #444;
}

@media (max-width: 992px) {
  .pp1378-hero__grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .pp1378-hero__image {
    border-radius: 3vw;
  }

  .pp1378-duties li {
    padding: 4vw 4vw 4vw 13vw;
    font-size: 3.7vw;
    border-radius: 3vw;
    margin-bottom: 3vw;
  }

  .pp1378-duties li::before {
    width: 7vw;
    height: 7vw;
    left: 4vw;
    font-size: 4vw;
  }

  .pp1378-asn-grid {
    gap: 4vw;
  }

  .pp1378-asn-card {
    padding: 5vw;
    border-radius: 3vw;
  }

  .pp1378-asn-card__title {
    font-size: 4.5vw;
  }

  .pp1378-asn-card__meta {
    font-size: 3.5vw;
  }

  .pp1378-faq {
    gap: 2.5vw;
  }

  .pp1378-faq-item {
    border-radius: 4vw;
  }

  .pp1378-faq-item__q {
    font-size: 3.8vw;
    padding: 4.5vw;
    gap: 4vw;
  }

  .pp1378-faq-item__q::after {
    width: 2vw;
    height: 2vw;
    margin-top: -0.8vw;
  }

  .pp1378-faq-item[open] .pp1378-faq-item__q::after {
    margin-top: 0.4vw;
  }

  .pp1378-faq-item__a {
    font-size: 3.6vw;
    padding: 0 4.5vw 4.5vw;
  }
}

.control-services-intro {
  margin-bottom: 8vw;
}

.control-services-intro__text {
  max-width: 56vw;
  font-size: 1.04vw;
  line-height: 1.55;
  color: #333;
  font-family: var(--font-main);
}

.control-services-intro__text p {
  margin: 0 0 1vw;
}

.control-services-intro__text p:last-child {
  margin-bottom: 0;
}

.control__image {
  width: 100%;
  margin-bottom: 3vw;
}

.control__image img {
  width: 100%;
  object-fit: contain;
}

.control__bottom {
  display: flex;
  gap: 1.6vw;
  justify-content: center;
  align-items: center;
}

.control__text {
  max-width: 42.1vw;
  font-size: 1.25vw;
  font-weight: 600;
  font-family: "Geologica", sans-serif;
  padding: 0.9vw 1.1vw;
  background-color: white;
  text-align: center;
  border-radius: 50px;
}

.control__bottom button {
  height: 4vw;
}

.offers__grid {
  display: flex;
  justify-content: center;
  gap: 1vw;
  flex-wrap: wrap;
}

.control {
  margin-bottom: 7vw;
}

.offers {
  margin-bottom: 10vw;
}

.offers__item {
  box-sizing: border-box;
  width: 32%;
  background-color: white;
  border-radius: 20px;
  font-size: 1.25vw;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  min-height: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  border: 1px solid #eee;
}

.offers .offers__item:last-child {
  width: 55%;
}

.product-tab-content h3 {
  margin: 2vw 0;
  line-height: 140%;
}

.product-tab-content {
  line-height: 140%;
}

.product-tab-content h4 {
  margin-bottom: 1vw;
  margin-top: 1vw;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.page-404__inner {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.page-404__code {
  font-family: var(--font-main), sans-serif;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary-blue);
  opacity: 0.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-404__title {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-404__text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.page-404__actions .btn {
  min-width: 10rem;
}

.page-404__search {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-404__search .search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 20rem;
  margin: 0 auto;
  justify-content: center;
}

.page-404__search .search-field {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 2rem;
  font-size: 0.9rem;
}

.page-404__search .search-submit {
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.page-404__search .search-submit:hover {
  background: #122bb0;
}

.services-catalog {
  margin-bottom: 10vw;
}

.services-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.controls-catalog {
  margin-bottom: 8vw;
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2vw;
}

.control-card {
  position: relative;
  border-radius: 1.8vw;
  padding: 1.8vw;
  background: #ffffff;
  overflow: hidden;
  min-height: 14vw;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #eee;
}

.control-card:hover {
  transform: translateY(-0.3vw);
}

.control-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.control-card__media {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.3vw 0.5vw 0;
}

.control-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4vw 0.9vw;
  border-radius: 999px;
  background: var(--primary-blue);
  font-size: 0.7vw;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  display: none;
}

.control-card__image-wrap {
  width: 90%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1.2vw 2.1vw rgba(7, 9, 44, 0.2));
  transform-origin: center bottom;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.control-card:hover .control-card__image-wrap img {}

.control-card__body {
  margin-top: 1.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.control-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 1.25vw;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #303030;
  text-align: center;
  margin: 0 auto;
}

.control-card__excerpt {
  font-size: 0.9vw;
  line-height: 1.6;
  color: rgba(240, 244, 255, 0.9);
  margin: 0 0 0.9vw;
}

.control-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35vw;
  font-size: 0.6vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  width: 2.25vw;
  height: 2.25vw;
  background: var(--primary-blue);
  border-radius: 50%;
  min-width: 2.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-card__more svg {
  transition: transform 0.25s ease;
  width: 1.5vw;
  height: 1.5vw;
}

.control-card--all {
  background: transparent;
  color: #111827;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.control-card--all .control-card__media {
  display: none;
}

.control-card--all .control-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.control-card--all .control-card__title {
  font-size: 1.1vw;
  margin-bottom: 1.2vw;
}

.control-card--all .control-card__excerpt {
  font-size: 0.9vw;
  color: #4b5563;
  margin-bottom: 1vw;
  max-width: 15vw;
  text-align: center;
  line-height: 140%;
}

.control-card__more--primary {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0.55vw 1.2vw;
  border-radius: 999px;
  background: transparent;
  color: #1d4ed8;
  font-size: 0.9vw;
}

.control-card__more--primary svg {
  width: 1vw;
  height: 1vw;
}

.control-card--all:hover .control-card__more--primary svg {
  transform: translateX(0.2vw);
}

@media (max-width: 1024px) {
  .controls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3vw;
  }

  .control-card {
    border-radius: 3vw;
    padding: 3vw;
    min-height: 32vw;
  }

  .control-card__badge {
    font-size: 1.6vw;
    padding: 1vw 2vw;
  }

  .control-card__title {
    font-size: 2.4vw;
  }

  .control-card__excerpt {
    font-size: 1.7vw;
  }

  .control-card__more {
    font-size: 1.4vw;
  }
}

@media (max-width: 640px) {
  .controls-grid {
    grid-template-columns: 1fr;
  }

  .control-card {
    min-height: 52vw;
  }

  .control-card__image-wrap {
    width: 100%;
  }
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(24, 55, 218, 0.15);
  transform: translateY(-2px);
}

.service-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at top, rgba(18, 43, 176, 0.08), transparent 55%), linear-gradient(135deg, #f6f7ff 0%, #f1f4ff 40%, #f9fafc 100%);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card__image.service-card__image_contain {
  padding: 2vw;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04) translateY(-2px);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.service-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
  line-height: 1.3;
  font-family: "Geologica", sans-serif;
}

.service-card__excerpt {
  font-size: 1vw;
  color: var(--text-gray);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1vw;
}

.service-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

.services-catalog__empty {
  text-align: center;
  color: var(--text-gray);
  padding: 3rem;
}

.services-catalog .nav-links {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.services-catalog .nav-links a,
.services-catalog .nav-links span {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
}

.services-catalog .nav-links .current {
  background: var(--primary-blue);
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 23, 0.6);
  cursor: pointer;
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 26rem;
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 2rem 2rem 2.25rem;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal.is-open .modal__box {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.modal__close:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.modal__text {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.modal__form .input-group {
  margin-bottom: 1rem;
}

.modal__form .form-input {
  height: 3rem;
  padding: 0 1rem;
  border-radius: 2rem;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.modal__form .submit-btn {
  height: 3rem;
  border-radius: 2rem;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.modal-login__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.modal-login__btn {
  display: flex;
  text-align: center;
  font-size: 0.95rem;
  border-radius: 2rem;
  transition: opacity 0.2s;
  height: 4vw;
}

.modal-login__btn:hover {
  opacity: 0.9;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s;
}

.burger-btn__line {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger-btn.is-active .burger-btn__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-active .burger-btn__line:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-active .burger-btn__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 15, 23, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100vh;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, visibility 0.5s, box-shadow 0.4s ease;

  background: linear-gradient(180deg, #040f17 0%, rgba(4, 15, 23, 0.98) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
  border-radius: 20px 0 0 20px;
}

.mobile-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
  z-index: 99999;
}

.mobile-nav__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.mobile-nav__close:active {
  transform: scale(0.96);
}

.mobile-nav__close svg {
  width: 22px;
  height: 22px;
}

.mobile-nav__logo {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.mobile-nav__logo img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobile-nav__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  overflow-y: auto;
  min-height: 0;
}

.mobile-nav__link {
  display: block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s ease, background 0.2s ease;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  background: transparent;
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav__link:active {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav__footer {
  flex-shrink: 0;
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__login {
  width: 100%;
  padding: 14px 20px !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  border-radius: 14px;
  background: var(--primary-blue);
  color: var(--white) !important;
  border: none;
  box-shadow: 0 4px 12px rgba(24, 55, 218, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-nav__login:hover {
  background: #122bb0;
  box-shadow: 0 6px 16px rgba(24, 55, 218, 0.5);
  transform: translateY(-1px);
}

body.menu-open {
  overflow: hidden;
}

.solution__alltext.solution__item {
  margin-bottom: 1.5vw;
}

.control-card__more {
  display: none;
}

.control-card__more--primary {
  display: block;
}

.product__desc {
  margin-bottom: 5vw;
}

.product__desc--blocks {
  margin-bottom: 5vw;
  width: 100%;
}

.product__desc p {
  font-weight: 500;
  font-size: 0.9vw;
  line-height: 1.125vw;
  margin-bottom: 1.5vw;
  display: block;
}

.opisanie__grid {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.product__desc--blocks .opisanie__grid {
  gap: 4rem;
}

.opisanie__row {
  display: flex;
  gap: 5vw;
  align-items: center;
}

.product__desc--blocks .opisanie__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
}

.opisanie__row.reverse {
  flex-direction: row-reverse;
}

.product__desc--blocks .opisanie__row.reverse {
  direction: rtl;
}

.product__desc--blocks .opisanie__row.reverse>* {
  direction: ltr;
}

.opisanie__block {
  min-width: 0;
}

.product__desc--blocks .opisanie__block {
  justify-self: start;
}

.product__desc--blocks .opisanie__row.reverse .opisanie__block {
  justify-self: end;
}

.opisanie__image {
  width: 40vw;
  min-width: 40vw;
  height: 25vw;
  overflow: hidden;
  border-radius: 20px;
}

.product__desc--blocks .opisanie__image {
  width: 100%;
  min-width: 0;
  max-width: 560px;
  height: auto;
  aspect-ratio: 16/10;
  border-radius: 1.25rem;
  background: #f5f6f8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  justify-self: end;
}

.product__desc--blocks .opisanie__row.reverse .opisanie__image {
  justify-self: start;
}

.opisanie__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.opisanie__title {
  font-family: 'Golos Text', sans-serif;
  font-weight: 900;
  font-size: 1.5vw;
  line-height: 1.8vw;
  text-transform: uppercase;
  color: black;
  margin-bottom: 2vw;
}

.product__desc--blocks .opisanie__title {
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.35vw, 1.5rem);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-blue);
  display: inline-block;
}

.opisanie__text p {
  text-align: justify;
}

.product__desc--blocks .opisanie__text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0 0 0.75em;
  text-align: left;
}

.product__desc--blocks .opisanie__text p:last-child {
  margin-bottom: 0;
}

.opisanie__grid .opisanie__text h4,
.opisanie__grid .opisanie__text h5 {
  font-weight: 500;
  font-size: 0.9vw;
  line-height: 1.125vw;
  margin-bottom: 1vw;
  display: block;
  text-align: justify;
}

.product__desc--blocks .opisanie__grid .opisanie__text h4,
.product__desc--blocks .opisanie__grid .opisanie__text h5 {
  font-weight: 600;
  font-size: 1rem;
  margin: 1em 0 0.5em;
  color: var(--text-dark);
  text-align: left;
}

.opisanie__grid .opisanie__text ul li {
  font-weight: 500;
  font-size: 0.9vw;
  line-height: 1.125vw;
  text-align: justify;
  padding-left: 1vw;
  position: relative;
}

.product__desc--blocks .opisanie__grid .opisanie__text ul li {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  padding-left: 0;
}

.opisanie__grid .opisanie__text ul {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  margin-bottom: 1.5vw;
}

.product__desc--blocks .opisanie__grid .opisanie__text ul {
  margin: 0.75em 0 1em;
  padding-left: 1.25em;
  gap: 0.35em;
}

#modal-login .modal__text {
  display: none;
}

#modal-login .modal__title {
  text-align: center;
  margin-bottom: 2vw;
}

@media (min-width: 767px) {
  .btn-glass:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
  }

  .hero-side-block:hover {
    background-color: #ffffff29;
  }

  .hero-side-block:hover .hero-side-arrow {
    border-color: white;
    background-color: white;
  }

  .hero-side-block:hover .hero-side-arrow path {
    stroke: #000000;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: none;
    padding: 0 4vw;
  }

  .faq-section {
    padding: 8vw 0 12vw;
  }

  .faq-section .section-title {
    margin-bottom: 6vw;
  }

  .faq-list {
    max-width: none;
    gap: 12px;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-item__trigger {
    font-size: 4.2vw;
    padding: 4vw 4.5vw;
  }

  .faq-item__icon {
    width: 10px;
    height: 10px;
    margin-top: -2px;
  }

  .faq-item.is-open .faq-item__icon {
    margin-top: 4px;
  }

  .faq-item__answer {
    font-size: 3.8vw;
    padding: 0 4.5vw 4vw;
  }

  .faq-empty {
    font-size: 3.8vw;
    padding: 6vw 0;
  }

  .section-title {
    font-size: 8vw;
    margin-bottom: 6vw;
  }

  .btn {
    height: 14vw;
    font-size: 3.7vw;
    border-radius: 50px;
    padding: 0vw;
    display: flex;
    width: 100%;
  }

  .product-info {
    width: 100%;
  }

  .product-btn {
    max-width: 100%;
  }

  .main-header {
    height: auto;
    padding: 10px 16px;
    position: sticky;
    top: 6px;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    box-sizing: border-box;
    margin: 6px auto;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  }

  .main-header.header-overlay {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    background: transparent;
    box-shadow: none;
  }

  .main-header.header-overlay .logo-img {
    filter: brightness(0) invert(1);
  }

  .main-header.header-overlay .burger-btn {
    background: rgba(255, 255, 255, 0.15);
  }

  .main-header.header-overlay .burger-btn__line {
    background: #fff;
  }

  .main-header.header-overlay.is-scrolled {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  }

  .main-header.header-overlay.is-scrolled .logo-img {
    filter: none;
  }

  .main-header.header-overlay.is-scrolled .burger-btn {
    background: var(--bg-light);
  }

  .main-header.header-overlay.is-scrolled .burger-btn__line {
    background: var(--text-dark);
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .burger-btn {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .header-actions__desktop {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .mobile-menu-overlay,
  .mobile-nav {
    display: flex;
    flex-direction: column;
  }

  .logo-bg {
    width: auto;
    height: auto;
    padding: 0;
  }

  .logo-img {
    width: 170px;
    height: auto;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .btn-login {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 50px;
  }

  .hero-content {
    height: auto;
    min-height: 320px;
    padding-bottom: 24px;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 0;
    padding-top: 0;
    padding: 7vw;
    padding-top: 22vw !important;
  }

  .hero-text-container {
    max-width: 100%;
    padding-bottom: 24px;
  }

  .hero-title {
    font-size: 8vw;
    margin-bottom: 5vw;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-buttons .btn {
    padding: initial;
    height: 14vw;
    font-size: 3.7vw;
  }

  .hero-info-bar {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
  }

  .hero-info-item {
    max-width: 100%;
  }

  .hero-bg-wrapper {
    left: 0;
    right: 0;
    top: 0;
    border-radius: 0 0 40px 40px;
  }

  .hero-side-blocks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-side-block {
    min-width: 100%;
    max-width: 100%;
    height: auto;
    padding: 4vw;
    border-radius: 40px;
    align-items: center;
  }

  .hero-side-text {
    font-size: 4.5vw;
  }

  .hero-side-arrow {
    width: 8vw;
    height: 8vw;
  }

  .services-tabs {
    gap: 10px;
    margin-bottom: 6vw;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -4vw;
    padding: 0.5rem 4vw 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.875rem;
    border-radius: 2.5rem;
    white-space: nowrap;
  }

  .service-tab-content.active {
    flex-direction: column;
    gap: 8vw;
  }

  .service-heading {
    font-size: 8vw;
    margin-bottom: 4vw;
    line-height: 120%;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: "Geologica", sans-serif;
    line-height: 120%;
  }

  .service-desc {
    font-size: 3.7vw;
    margin-bottom: 6vw;
  }

  .service-image-wrapper {
    width: 100%;
    min-width: 0;
    height: 240px;
  }

  .consultation-card {
    flex-direction: column;
    padding: 6vw;
    border-radius: 40px;
  }

  .consultation-content {
    max-width: 100%;
  }

  .consult-title {
    font-size: 6vw;
    margin-bottom: 4vw;
  }

  .consult-form {
    flex-direction: column;
    gap: 12px;
  }

  .form-input {
    width: 100%;
    max-width: 100%;
    height: 14vw;
    padding: 0 16px;
    font-size: 16px;
    border-radius: 40px;
  }

  .form-btn {
    height: 14vw;
    padding: 0 24px;
    font-size: 3.7vw;
    padding: initial;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-bottom: 8vw;
  }

  .case-card {
    height: auto;
    border-radius: 40px;
  }

  .case-content {
    padding: 6vw;
    border-radius: 40px;
    gap: 4vw;
  }

  .case-tag {
    font-size: 3.7vw;
    padding: 6px 12px;
    border-radius: 40px;
  }

  .case-title {
    font-size: 6vw;
    line-height: 120%;
  }

  .case-stats {
    gap: 16px;
    padding-top: 4vw;
  }

  .stat-value {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .stat-label {
    font-size: 3.5vw;
  }

  .why-us-benefits-grid {
    gap: 16px;
    margin-bottom: 6vw;
  }

  .why-us-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card:nth-child(1),
  .why-card:nth-child(2),
  .why-card:nth-child(3),
  .why-card:nth-child(4) {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .why-card {
    min-height: auto;
    padding: 20px 16px;
  }

  .why-card-gradient {
    flex-direction: column;
    gap: 16px;
  }

  .why-card-content-side {
    margin-left: 0;
  }

  .why-icon-box {
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    margin-bottom: 4vw;
  }

  .catalog__wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .catalog__sidebar {
    min-width: 100%;
    width: 100%;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
    margin-bottom: 8vw;
  }

  .catalog-cards {
    grid-template-columns: 1fr;
    gap: 3vw;
    margin-bottom: 6vw;
  }

  .cat-card {
    padding: 6vw;
    border-radius: 3vw;
    gap: 3vw;
    min-height: 28vw;
    flex-direction: column;
    display: flex;
    height: auto;
    border-radius: 40px;
  }

  .cat-card__pic--empty {
    min-height: 20vw;
  }

  .cat-card__title {
    font-size: 5vw;
    margin-bottom: 3vw;
  }

  .cat-card__desc {
    font-size: 4vw;

    margin-bottom: 4vw;
  }

  .cat-card__btn {
    width: 10vw;
    height: 10vw;
    min-width: 44px;
    min-height: 44px;
  }

  .filter {
    padding: 20px;
  }

  .filter__maintitle {
    font-size: 1rem;
  }

  .filter__title {
    font-size: 0.95rem;
  }

  .filter__checkbox-label,
  .filter__link {
    font-size: 0.85rem;
  }

  .filter__price-input {
    max-width: 80px;
    font-size: 0.85rem;
  }

  .filter__btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .page__title {
    font-size: 8vw;
    margin-bottom: 4vw;
  }

  .catalog-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    margin-bottom: 6vw;
  }

  .catalog-tab {
    padding: 4vw 3vw;
    font-size: 3.8vw;
    border-radius: 3vw;
    min-height: 48px;
  }

  .product-card {
    padding: 6vw;
    border-radius: 40px;
  }

  .product-name {
    font-size: 5vw;
    margin-bottom: 4vw;
  }

  .product-price {
    font-size: 4.5vw;
    margin-bottom: 3vw;
  }

  .product-category {
    font-size: 3.7vw;
    margin-bottom: 2vw;
    opacity: 0.7;
    font-weight: 300;
  }

  .product__wrapper {
    flex-direction: column;
    gap: 6vw;
    margin-bottom: 15vw;
  }

  .product__wrapper--hero {
    grid-template-columns: 1fr;
    gap: 5vw;
    margin-bottom: 8vw;
  }

  .product__gallery {
    max-width: 100%;
    width: 100%;
  }

  .product__image-wrap {
    max-height: none;
    aspect-ratio: 1;
    padding: 5vw;
  }

  .product__info {
    max-width: 100%;
    width: 100%;
  }

  .product__title {
    font-size: 8vw;
  }

  .product--single .product__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .product__meta {
    margin-bottom: 4vw;
    font-size: 3.7vw;
  }

  .product__desc--blocks .opisanie__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }

  .product__desc--blocks .opisanie__row.reverse {
    direction: ltr;
  }

  .product__desc--blocks .opisanie__image {
    max-width: 100%;
  }

  .product__content-block {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .product__content-block p,
  .product__content-block ul,
  .product__content-block ol,
  .product__content-block ul li,
  .product__content-block ol li,
  .service-detail-block__body p,
  .service-detail-block__body ul,
  .service-detail-block__body ol,
  .service-detail-block__body ul li,
  .service-detail-block__body ol li {
    font-size: 3.7vw;
    line-height: 1.5;
  }

  .product__description {
    max-height: none;
    margin-bottom: 5vw;
  }

  .product__description p {
    font-size: 4vw;
  }

  .product__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 4vw;
    padding-top: 4vw;
  }

  .product__price {
    font-size: 1.35rem;
  }

  .product__order-btn {
    width: 100%;
    max-width: none;
    height: 48px;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .product__about_content,
  .product__about_content p,
  .product__about_content ul {
    font-size: 3.7vw;
  }

  .product__specs-table td {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 94vw;
    padding: 0 3vw;
  }

  .footer-col,
  .col-info {
    min-width: 0;
    max-width: 100%;
  }

  .footer-col h3 {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .col-links a,
  .footer-details p,
  .footer-details h4 {
    font-size: 0.9rem;
  }

  .col-contacts .phone {
    font-size: 1rem;
  }

  .footer-logo-img {
    width: 250px;
  }

  .testimonials-footer .btn.btn-primary,
  .cases-footer .btn.btn-primary,
  .catalog-footer .btn.btn-primary {
    width: 100%;
    max-width: 100%;
    height: 14vw;
  }

  .section-breadcrumbs {
    margin-bottom: 6vw;
  }

  .breadcrumbs {
    gap: 6px;
  }

  .breadcrumbs__item {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .pagination__btn,
  .pagination__page {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .catalog__pagination {
    margin-top: 32px;
    padding: 24px 0;
  }

  .catalog__pagination .page-numbers {
    gap: 8px;
  }

  .catalog__pagination .page-numbers a,
  .catalog__pagination .page-numbers span {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.95rem;
  }

  .catalog__pagination .page-numbers .prev,
  .catalog__pagination .page-numbers .next {
    font-size: 1.1rem;
  }

  .modal__box {
    max-width: 94vw;
    padding: 1.5rem;
  }

  .modal__title {
    font-size: 1.25rem;
  }

  .modal__form .form-input,
  .modal__form .submit-btn {
    height: 2.75rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    min-height: auto;
    border-radius: 40px;
  }

  .satellite-img {
    right: 0;
    top: -14vw;
    width: 60vw;
    margin-bottom: 12px;
    left: auto;
  }

  .cta-left {
    max-width: 100%;
  }

  .cta-text h3 {
    font-size: 7vw;
    margin-bottom: 4vw;
  }

  .cta-text p {
    font-size: 3.7vw;
    margin-bottom: 8vw;
  }

  .cta-right {
    width: 100%;
    max-width: 100%;
  }

  .contact-form .form-input {
    height: 44px;
    padding: 0 16px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
  }

  .contact-form .submit-btn {
    height: 44px;
    font-size: 0.95rem;
    border-radius: 40px;
  }

  .posad__text img {
    max-width: 100%;
  }

  .posad__text p {
    font-size: 0.95rem;
  }

  .city-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .city-tab {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .partners-grid {
    gap: 16px;
  }

  .partner-logo {
    padding: 1vw;
    width: 35vw;
    height: 20vw;
    border-radius: 40px;
  }

  .saving-tools__card {
    flex-direction: column;
    min-height: 0;
    border-radius: 24px;
  }

  .saving-tools__visual {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    min-height: 42vw;
    padding: 8vw 6vw 6vw;
  }

  .saving-tools__visual img {
    max-width: 70vw;
  }

  .saving-tools__orb--1 {
    width: 40vw;
    height: 40vw;
    top: -12vw;
    right: -8vw;
  }

  .saving-tools__orb--2 {
    width: 28vw;
    height: 28vw;
    bottom: -10vw;
    left: -6vw;
  }

  .saving-tools__body {
    padding: 6vw 5vw 7vw;
  }

  .saving-tools__title {
    font-size: 1.25rem;
    padding-left: 12px;
    border-left-width: 4px;
    margin-bottom: 1rem;
  }

  .saving-tools__tags {
    gap: 10px;
    margin-bottom: 1rem;
  }

  .saving-tools__tag {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .saving-tools__text {
    font-size: 0.9375rem;
    max-width: 100%;
  }

  .pp2216-hero__title {
    font-size: 1.25rem;
  }

  .pp2216-hero__text,
  .pp2216-section__intro,
  .pp2216-section__text,
  .pp2216-equipment-list,
  .pp2216-links li,
  .pp2216-intro-list,
  .pp2216-intro-card__text {
    font-size: 0.9375rem;
  }

  .pp2216-intro-list {
    padding-left: 1.25rem;
  }

  .pp2216-intro-card {
    margin: 1.5rem 0 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .pp2216-intro-card__title {
    font-size: 1.125rem;
  }

  .pp2216-intro-note {
    font-size: 0.875rem;
  }

  .pp2216-equipment-list {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .pp2216-equipment-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 4vw;
    padding: 5vw;
    border-radius: 3vw;
    margin-bottom: 5vw;
  }

  .pp2216-equipment-cta__text {
    font-size: 3.7vw;
  }

  .pp2216-equipment-cta .btn {
    width: 100%;
  }

  .pp2216-equipment-note {
    padding: 4vw;
    font-size: 3.7vw;
    border-radius: 0 2vw 2vw 0;
  }

  .pp2216-fines-table-wrap {
    margin-bottom: 5vw;
    border-radius: 3vw;
  }

  .pp2216-fines-table {
    font-size: 3.5vw;
    min-width: 520px;
  }

  .pp2216-fines-table th,
  .pp2216-fines-table td {
    padding: 3vw;
  }

  .pp2216-fines-table th {
    font-size: 3.2vw;
  }

  .pp2216-fines-table__violation {
    min-width: 200px;
  }

  .pp2216-fines-table__alt {
    margin-top: 1.5vw;
    font-size: 3.2vw;
  }

  .pp2216-fines-source {
    font-size: 3.2vw;
  }

  .pp2216-links-grid {
    grid-template-columns: 1fr;
    gap: 3vw;
  }

  .pp2216-link-card {
    padding: 4vw;
    border-radius: 3vw;
    gap: 2vw;
  }

  .pp2216-link-card__label {
    font-size: 4vw;
  }

  .pp2216-link-card__url {
    font-size: 3.5vw;
  }

  .pp2216-section__title {
    font-size: 1.25rem;
  }

  .pp2216-section {
    margin-bottom: 22.5vw;
  }

  .pp2216-step {
    grid-template-columns: 12vw 1fr;
    gap: 4vw;
    padding-bottom: 5vw;
  }

  .pp2216-step:not(:last-child)::after {
    left: 6vw;
    top: 12vw;
    bottom: 1vw;
  }

  .pp2216-step__number {
    width: 12vw;
    height: 12vw;
    font-size: 4.5vw;
    box-shadow: 0 1vw 2.5vw rgba(24, 55, 218, 0.25);
  }

  .pp2216-step__card {
    padding: 5vw;
    border-radius: 3vw;
  }

  .pp2216-step__title {
    font-size: 4.2vw;
    margin-bottom: 2vw;
  }

  .pp2216-step__text {
    font-size: 3.7vw;
  }

  .pp2216-categories {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .pp2216-category {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1.25rem;
    border-radius: 1rem;
    gap: 1rem;
  }

  .pp2216-category__left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .pp2216-category__name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .pp2216-category__desc {
    font-size: 0.9375rem;
  }

  .pp2216-hero__subtitle {
    font-size: 0.9375rem;
  }

  .pp1378-category-btns {
    flex-direction: column;
    gap: 0.8rem;
  }

  .pp1378-category-btn {
    min-width: 0;
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pp1378-offer-item {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
  }

  .pp1378-offer-item__num {
    font-size: 0.875rem;
  }

  .page-404 {
    min-height: 50vh;
    padding: 3rem 0;
  }

  .page-404__actions {
    flex-direction: column;
  }

  .page-404__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .services-catalog__grid {
    grid-template-columns: 1fr;
    gap: 6vw;
  }

  .service-card__body {
    padding: 6vw;
  }

  .service-card__title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }

  .mobile-nav {
    width: 100%;
    max-width: 80%;
  }

  main.site-main {
    padding-top: 6vw;
  }

  .logo-group {
    width: auto;
  }

  .services-catalog {
    margin-bottom: 15vw;
  }

  .icon-bg {
    width: 15vw;
    height: 15vw;
    border-radius: 20px;
  }

  .icon-bg img {
    width: 7vw;
    height: 7vw;
  }

  .icon-box {
    margin-bottom: 5vw;
  }

  .contact-form {
    gap: 3vw;
    width: 100%;
  }

  section#section-contact-cta {
    padding-top: 10vw;
    margin-bottom: 22.5vw;
  }

  .stages-list {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .stage-description {
    font-size: 4vw;
  }

  .stage-item {
    gap: 4vw;
    padding: 6vw;
    border-radius: 40px;
    flex-direction: column-reverse;
    align-items: start;
  }

  .stage-number {
    width: 12vw;
    height: 12vw;
    font-size: 5vw;
  }

  .stages-cta-text {
    font-size: 5vw;
  }

  .implementation-stages-section .section-title {
    margin-bottom: 4vw;
  }

  section.implementation-stages-section {
    margin-bottom: 15vw;
  }

  section.we-offer-section {
    margin-bottom: 22.5vw;
  }

  .we-offer-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .we-offer-item {
    font-size: 3.7vw;
    border-radius: 30px;
    padding: 3vw;
  }

  .we-offer-list {
    gap: 2vw;
  }

  .we-offer-card {
    padding: 6vw;
    border-radius: 40px;
  }

  .we-offer-card-title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }

  .service-img {
    border-radius: 40px;
  }

  .services-section {
    margin-bottom: 22.5vw;
  }

  main {
    padding-top: 6vw;
  }

  .breadcrumbs {
    gap: 6px;
    flex-wrap: wrap;
  }

  .hero-section {
    margin-bottom: 15vw;
  }

  .hero-title {}

  .hero-info-bar {
    display: none;
  }

  .hero-side-arrow svg {
    width: 4vw;
  }

  .hero-slider-pagination {
    bottom: 4vw !important;
  }

  .hero-slider-pagination .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
    margin: 0 1vw !important;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 10vw;
    height: 10vw;
    margin-top: -5vw;
  }

  .hero-slider-prev {
    left: 3vw;
  }

  .hero-slider-next {
    right: 3vw;
  }

  .hero-slider-prev svg,
  .hero-slider-next svg {
    width: 4vw;
    height: 4vw;
  }

  .consult-subtitle {
    font-size: 3.7vw;
    margin-bottom: 6vw;
  }

  section.consultation-section {
    margin-bottom: 22.5vw;
  }

  .product-img-box {
    height: 35vw;
    width: 100%;
    margin-bottom: 4vw;
  }

  .catalog-section {
    margin-bottom: 22.5vw;
  }

  .section-subtitle {
    font-size: 3.7vw;
    margin-bottom: 6vw;
    line-height: 140%;
  }

  section.cases-section {
    margin-bottom: 15vw;
  }

  .why-card {
    border-radius: 40px;
    padding: 6vw;
  }

  .why-card-content-side {
    border-radius: 40px;
    padding: 6vw;
  }

  .why-title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }

  .why-desc {
    font-size: 4vw;
  }

  .why-icon-ruble {
    font-size: 5vw;
  }

  .stat-big {
    font-size: 10vw;
  }

  .stat-card.blue-bg {
    padding: 4vw;
    border-radius: 30px;
  }

  .stat-text {
    font-size: 3.4vw;
  }

  section.why-us-section {
    margin-bottom: 22.5vw;
  }

  .why-icon-img {
    width: 6vw;
    height: 6vw;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .why-card-gradient .why-icon-box {
    width: 12vw;
    height: 12vw;
  }

  .review-author {
    font-size: 4.5vw;
  }

  .review-card {
    padding: 6vw;
    border-radius: 40px;
  }

  .review-avatar {
    width: 8vw;
    height: 8vw;
  }

  .review-header {
    gap: 4vw;
    margin-bottom: 4vw;
  }

  .review-text {
    font-size: 4vw;
    line-height: 140%;
  }

  .testimonials-header {
    margin-bottom: 6vw;
  }

  .testimonials-section {
    margin-bottom: 22.5vw;
  }

  .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .partners-track {
    gap: 4vw;
  }

  .partners-marquee {
    gap: 4vw;
  }

  .partners-section {
    margin-bottom: 22.5vw;
  }

  .service-card__image.service-card__image_contain img {
    padding: 6vw;
    object-fit: contain;
  }

  .service-card__excerpt {
    font-size: 3.7vw;
    margin-bottom: 4vw;
  }

  .contacts-content {
    flex-direction: column;
    gap: 8vw;
  }

  .filter {
    display: none;
  }

  .contacts-map {
    width: 100%;
    height: 100vw;
    max-width: 100%;
    max-height: 100vw;
    min-height: 100vw;
  }

  .contacts-map iframe {
    min-height: 100vw;
  }

  .contact-text {
    font-size: 3.7vw;
  }

  .contact-item svg {
    width: 5vw;
    height: 5vw;
    min-width: 5vw;
  }

  .contact-item {
    gap: 4vw;
  }

  .contacts-info {
    gap: 4vw;
  }

  .city-tabs {
    margin-bottom: 6vw;
  }

  .contacts-block .section-title,
  .requisites-block .section-title {
    margin-bottom: 6vw;
  }

  .contact-department {
    flex-direction: column;
  }

  .department-item .contact-text svg {
    width: 5vw;
    height: 5vw;
    min-width: 5vw;
  }

  .department-item .contact-text {
    gap: 4vw;
  }

  .department-name {
    font-size: 4.5vw;
    margin-bottom: 2vw;
    padding-top: 4vw;
  }

  .requisites-label {
    font-size: 3.7vw;
    font-weight: 700;
  }

  .requisites-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 4vw;
  }

  .requisites-value {
    font-size: 3.7vw;
  }

  .requisites-content {
    gap: 4vw;
  }

  .contacts-block,
  .requisites-block {
    margin-bottom: 15vw;
  }

  .text-content {
    font-size: 3.7vw;
    max-width: 100%;
  }

  .text-content p {
    margin-bottom: 4vw;
  }

  .page-standard-section {
    padding: 8vw 0 12vw;
  }

  .page-standard-thumb {
    margin-bottom: 5vw;
    border-radius: 12px;
  }

  .info-block {
    margin-bottom: 15vw;
  }

  .col-contacts .city {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }

  .col-contacts .contact-group {
    margin-bottom: 4vw;
  }

  .footer-col h3 {
    font-size: 5vw;
  }

  .col-links li {
    font-size: 3.7vw;
  }

  .col-links ul {
    gap: 3vw;
    display: flex;
    flex-direction: column;
  }

  .footer-container {
    gap: 12vw;
  }

  #section-footer {
    padding: 10vw 0;
  }

  .footer-details h4 {
    font-size: 4vw;
    margin-bottom: 4vw;
  }

  .footer-details {
    font-size: 3.7vw;
    padding-top: 4vw;
  }

  .similar-products-section {
    margin-bottom: 15vw;
  }

  .similar-products-section {
    margin-bottom: 22.5vw;
  }

  .offers__grid {
    flex-direction: column;
    gap: 4vw;
  }

  .offers__item {
    width: 100% !important;
    font-size: 3.7vw;
    padding: 6vw 4vw;
    line-height: 140%;
  }

  section.offers {
    margin-bottom: 22.5vw;
  }

  .control-services-intro {
    margin-bottom: 8vw;
  }

  .control-services-intro__text {
    max-width: 100%;
    font-size: 0.9375rem;
  }

  .control__bottom {
    flex-direction: column;
  }

  .control__text {
    width: 100%;
    max-width: 100%;
    font-size: 4vw;
    margin: 4vw 0;
    padding: 4vw;
  }

  .control {
    margin-bottom: 22.5vw;
  }

  .solution-detail-section .section-title {
    margin-bottom: 4vw;
  }

  .solution-detail-section .service-detail-blocks.solution-content {
    margin-top: 5vw;
    padding-top: 5vw;
  }

  .solution-detail-section__cta {
    margin-top: 6vw;
  }

  .solution__intro {
    max-width: 100%;
    font-size: 3.7vw;
    margin: 0;
    text-align: left;
  }

  .solution-content {
    gap: 6vw;
  }

  .solution-points {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .solution-point {
    flex-direction: row;
    padding: 5vw;
    border-radius: 20px;
    gap: 4vw;
  }

  .solution-point__num {
    font-size: 10vw;
    min-width: 12vw;
  }

  .solution-point__title {
    font-size: 4.2vw;
    margin-bottom: 2.5vw;
  }

  .solution-point__text {
    font-size: 3.5vw;
  }

  .solution-point__link {
    margin-top: 3vw;
    font-size: 3.5vw;
  }

  .solution__content {
    max-width: 100%;
  }

  .solution__item {
    font-size: 3.7vw;
    padding: 6vw;
    border-radius: 40px;
  }

  .solution__alltext.solution__item {
    margin-bottom: 4vw;
  }

  .solution__image {
    position: relative;
    width: 100%;
    height: 61vw;
    border-radius: 40px;
    overflow: hidden;
    margin: 0;
  }

  .solution__row {
    flex-direction: column;
  }

  .solution__image img {
    object-fit: cover;
  }

  .solution {
    margin-bottom: 15vw;
  }

  p.home-controls-subtitle {
    font-size: 3.7vw;
    margin: 2vw 0;
    margin-bottom: 4vw;
    line-height: 140%;
  }

  .control-card {
    border-radius: 40px;
    padding: 6vw;
    box-sizing: border-box;
  }

  .control-card__title {
    font-size: 4.5vw;
  }

  .control-card__badge {
    font-size: 3vw;
  }

  .control-card__image-wrap {
    padding: 8vw 4vw;
  }

  .control-card__title {
    text-align: center;
    margin: 0 auto;
  }

  .control-card--all .control-card__title {
    font-size: 4.5vw;
    margin-bottom: 4vw;
  }

  .control-card--all .control-card__excerpt {
    font-size: 3.7vw;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 4vw;
  }

  .control-card__more {
    font-size: 3.7vw;
  }

  .control-card__more--primary svg {
    width: 4vw;
    height: 4vw;
  }

  .home-controls-preview {
    margin-bottom: 22.5vw;
  }

  .controls-grid {
    gap: 4vw;
  }

  .control-card__more--primary {
    display: block;
  }

  .product__description {
    font-size: 3.7vw;
    margin-bottom: 6vw;
    line-height: 140%;
  }

  .product__about_content {
    padding: 4vw;
  }

  .product__about .services-tabs {
    margin-bottom: 4vw;
  }

  .product__about {
    margin-bottom: 15vw;
  }

  span.cat-card__pic {
    height: 35vw;
  }

  .consultation-image {
    display: none;
  }

  .product--single .product__meta {
    font-size: 4vw;
    margin-bottom: 4vw;
    margin-top: 4vw;
  }

  .product__desc--blocks .opisanie__title {
    font-size: 1.5rem;
    line-height: 140%;
  }

  .product__wc-description.product__content-block {
    overflow: hidden;
  }

  .product__wrapper--hero,
  .fuel-methods-section,
  .service-dual-section,
  .service-detail-section,
  .solution-detail-section,
  section.service-subservices-section {
    margin-bottom: 15vw;
  }


  .service-subservices-section .section-title {
    margin-bottom: 6vw;
  }

  .service-dual-section .product__content-block {
    margin-top: 0;
  }

  .service-offers-slider {
    margin: 0 -4vw;
    padding: 0 4vw;
  }

  .service-content-home .service-heading {
    font-size: 6vw;
    margin-top: 6vw;
    margin-bottom: 6vw;
  }

  .footer-logo {
    margin-bottom: 4vw;
  }

  .control__bottom button {
    height: 14vw;
  }

  .control-services-intro__text p {
    margin: 0 0 4vw;
  }

  .control-services-intro {
    margin-bottom: 22.5vw;
  }
}

.modal__title--thankyou {
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text, #333);
  text-align: center;
}