@charset "UTF-8";
html {
  font-size: 20px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.container {
  max-width: 1300px;
}

.h1,
.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #313131;
}

.h1 {
  font-size: 40px;
}

.section-title {
  font-size: 32px;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
}

.white {
  color: #fff;
  background-color: #17223a;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #006cb5;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-main:hover {
  background-color: #0d4471;
  color: #fff;
}

.btn-main:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-main--sm {
  padding: 8px 20px;
  font-size: 16px;
}

.btn-main--lg {
  padding: 10px 36px;
  font-size: 24px;
}

.btn-main--full {
  width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  .h1 {
    font-size: 25px;
  }
  .section-title {
    font-size: 20px;
  }
  .subtitle {
    font-size: 20px;
    font-weight: 600;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.service-card {
  position: relative;
  background: url("/static/landing/img/BGcard.png") center/cover no-repeat;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  min-height: 120px;
  height: 100%;
  transition: background 0.3s ease;
  font-family: "Inter";
  font-weight: 400;
  color: #17223a;
  text-wrap: balance;
  text-decoration: none;
}

.service-card:hover {
  background: url("/static/landing/img/BGcard2.png") center/cover no-repeat;
}

.service-card {
  padding: 1.3rem 4rem;
}

.other-services-section {
  background-color: #17223a;
}
.other-services-section .section-title {
  color: white;
}

/* --- Сетка карточек 3×2 --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .other-services-section {
    overflow-x: hidden;
  }
  .other-services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .other-services-section .service-card {
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1.2rem;
    white-space: normal;
    word-wrap: break-word;
  }
}
.steps {
  padding: 40px 0;
}

.steps-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.step {
  flex: 1;
  display: flex;
  background: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-left {
  width: 48px;
  background: #17223a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-left span {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

/* Контент карточки */
.step-content {
  padding-left: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #313131;
  line-height: 1.3;
}

/* Список */
.step-content ul {
  margin: 0;
  padding-left: 20px;
}
.step-content ul li {
  margin-bottom: 6px;
}

.two-cols {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.step-right {
  text-align: left;
}

.step-right img {
  width: 36px;
  margin-bottom: 8px;
}

.right-text {
  font-size: 16px;
  font-weight: 700;
  color: #1b4f7e;
  line-height: 1.1;
}

.step-wide {
  margin-top: 35px;
}

.wide-cols {
  display: flex;
  align-items: center;
  gap: 40px;
}

.wide-item {
  font-size: 16px;
  font-weight: 700;
  color: #1b4f7e;
  line-height: 1.2;
  max-width: 33%;
}

.wide-arrow {
  width: 38px;
}

@media (max-width: 576px) {
  .steps {
    padding: 20px 0;
  }
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  .step {
    flex-direction: row;
  }
  .step-left {
    width: 40px;
    border-radius: 6px 0 0 6px;
  }
  .step-left span {
    font-size: 22px;
  }
  .step-content {
    padding: 14px 14px;
  }
  .step-title,
  .step-content ul li {
    font-size: 14px;
    line-height: 1.3;
  }
  .right-text {
    font-size: 14px;
    line-height: 1.2;
  }
  .two-cols {
    flex-direction: column;
    gap: 12px;
  }
  .step-right img {
    width: 28px;
  }
  .step-wide {
    margin-top: 20px;
  }
  .wide-cols {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .wide-item {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.3;
  }
  .wide-arrow {
    width: 28px;
    transform: rotate(90deg);
  }
}
.opo-section {
  padding: 60px 0;
}/*# sourceMappingURL=style.css.map */