:root {
    --dark: #19191B;
    --gray: #696871;
    --purple: #5454D4
}

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

html {
    scroll-behavior: smooth;
}



body {
    font-family: "DM Sans", sans-serif;
}



/* ===== ШАПКА ===== */

.head {
    background: #ffffff;
    border-bottom: 1px solid #e6e7ee;
}

.head__widht {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.head__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
}
.head__logo-wrap {
  width: 200px;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.head__logo-wrap img {
  clip-path: inset(5px 5px 5px 5px);
  width: 63%;
  height: 170%;
  object-fit: cover;
  object-position: center 50%;
}
.head__logo {
    height: 400px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.head__list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.head__list-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.head__list-link:hover {
    color: var(--purple);
}

.head__list-link.active {
    color: var(--purple);
}

.head__list-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 100%;
    height: 2px;
    background: var(--purple);
}

.head__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.head__phone svg {
    color: var(--purple);
    flex-shrink: 0;
}

.head__phone:hover {
    color: var(--purple);
}

@media (max-width: 900px) {
    .head__list {
        display: none;
    }
    .head__phone {
      padding-right: 10px; /* здесь */
    }
}

a{
    text-decoration: none;
}
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;

  background-image:
    linear-gradient(90deg, rgba(10, 22, 48, 0.92) 0%, rgba(10, 22, 48, 0.55) 45%, rgba(10, 22, 48, 0.15) 75%),
    url("Images/ChatGPT Image 14 авг. 2026 г., 18_56_57.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero__content {
  max-width: 560px;
}

.hero__text {
  margin-bottom: 32px;
}

.hero_title {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.hero_desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

.hero__button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16224a;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.hero__button a:hover {
  background: #1f3168;
}

@media (max-width: 768px) {
  .hero {
    min-height: 380px;
    background-position: right;
    background-image:
      linear-gradient(180deg, rgba(10, 22, 48, 0.92) 20%, rgba(10, 22, 48, 0.75) 100%),
      url("Images/ChatGPT Image 14 авг. 2026 г., 18_56_57.png");
  }
  .hero__content {
    max-width: 100%;
  }
  .hero_title {
    font-size: 28px;
  }
}
.features {
  background: #ffffff;
  padding-block: 60px;
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.features__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #dfe1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.features__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.features__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}

@media (max-width: 900px) {
  .features__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 480px) {
  .features__container {
    grid-template-columns: 1fr;
  }
}
.services {
  background: #f7f8fa;
  padding-block: 70px;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.services__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.services__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--purple);
  margin: 14px auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.services__card {
  background: #ffffff;
  border: 1px solid #e6e7ee;
  border-radius: 12px;
  padding: 24px 20px;
}
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.services__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid #dfe1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 20px;
}

.services__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.services__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
  margin-bottom: 16px;
}

.services__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  transition: opacity 0.2s ease;
}

.services__link:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.process {
  background: #ffffff;
  padding-block: 70px;
}

.process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.process__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.process__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--purple);
  margin: 14px auto 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process__steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(10% - 18px);
  right: calc(10% - 18px);
  height: 1px;
  background: #e0e1e8;
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

@media (max-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .process__steps::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}
.bridge {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;

  background-image:
    linear-gradient(90deg, rgba(10, 22, 48, 0.92) 0%, rgba(10, 22, 48, 0.55) 45%, rgba(10, 22, 48, 0.15) 75%),
    url("Images/ChatGPT Image 15 авг. 2026 г., 23_04_20.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bridge__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.bridge__content {
    max-width: 560px;
}
.bridge_title {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.bridge_desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 460px;
}
@media (max-width: 768px) {
  .bridge {
    min-height: 680px;
    background-image:
      linear-gradient(180deg, rgba(10, 22, 48, 0.92) 20%, rgba(10, 22, 48, 0.75) 100%),
      url("Images/ChatGPT Image 15 авг. 2026 г., 23_04_20.png");
      background-position: 70% center
  }
  .bridge__content {
    max-width: 100%;
  }
  .bridge_title {
    font-size: 28px;
  }
}
.adventages-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin-top: 20px;
  padding-left: 0;
}

.adventages {
  display: flex;
  flex-direction: column;
}

.adventages .icon {
  margin-bottom: 5px;
  color: #ffffff;
}

.adventages h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.adventages p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .adventages-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.information {
  background: #f7f8fa;
  padding-block: 70px;
}

.information__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.information__container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.information__container h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--purple);
  margin: 14px auto 0;
}

.information__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.information__card {
  background: #ffffff;
  border: 1px solid #e6e7ee;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.information__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.information__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid #dfe1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin: 0 auto 16px;
}

.information__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 8px;
}

.information__card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 900px) {
  .information__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .information__grid {
    grid-template-columns: 1fr;
  }
}
