:root {
  --container-padding: 30px;
  --radius-lg: 60px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --color-bg: #f7f8fc;
  --color-soft: #f3f4fb;
  --color-white: #ffffff;
  --color-primary: #041b4e;
  --color-text: #1c1c1c;
  --color-muted: #33456e;
  --color-input: #edf3fc;
}

.container {
  width: 100%;
  max-width: 1920px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}

body {
  overflow-x: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 0.5px solid rgba(4, 27, 78, 0.08);
}

.footer {
  padding: 60px 0;
}

 .header__inner {
  height: 85px;
  display: flex;
  align-items: center;
  gap: 32px;
 }

 .brand {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
 }

 .brand__logo {
  width: 96px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 10px;
 }

 .brand__divider {
  width: 2px;
  height: 40px;
  object-fit: contain;
 }

 .brand__tagline {
  width: 117px;
  font-weight: 800;
  font-size: 10px;
  line-height: 1.1;
 }

 .nav {
  display: flex;
  align-items: center;
  gap: 50px;
 }

 .nav__link {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
 }

 .nav__caret {
  display: inline-block;
  width: 11.396px;
  height: 6.597px;
  margin-left: 15px;
  object-fit: contain;
  flex: 0 0 auto;
 }

 .header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
 }

 .header__phone {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  white-space: nowrap;
 }

 .header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
 }

 .menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
 }

 .burger {
  display: none;
 }

 .mobile-menu {
  display: none;
 }

 .btn--block {
  width: 100%;
 }

 .icon-btn {
  width: 51px;
  height: 51px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
 }

 .icon-btn__img {
  width: 51.19px;
  height: 51.19px;
  object-fit: contain;
  max-width: none;
 }

 .btn {
  height: 45px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 21.7px;
  border: 1px solid transparent;
  transition: filter 150ms ease, border-color 150ms ease, transform 150ms ease;
 }

 .btn--primary {
  background: var(--color-primary);
  color: #fff;
 }

 .btn--secondary {
  background: #ebedff;
  color: var(--color-text);
 }

 .btn--block {
  width: 100%;
 }

 .btn--header {
  width: 312px;
 }

 .btn:hover {
  filter: brightness(0.98);
 }

 .btn:active {
  transform: translateY(1px);
 }

 .btn:focus-visible,
 .nav__link:focus-visible,
 .field__input:focus-visible,
 .icon-btn:focus-visible {
  outline: 2px solid #4081fd;
  outline-offset: 2px;
 }

 .nav__link {
  transition: opacity 150ms ease;
 }

 .nav__link:hover {
  opacity: 0.85;
 }

 .hero {
  padding-top: 20px;
 }

 .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
 }

 .hero__card {
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
 }

 .hero__card--content {
  background: linear-gradient(57.7516deg, #041b4e 0%, #093eb4 102.39%);
  padding: 118px 140px 50px 157px;
  color: #fff;
 }

 .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 40%;
 }

 .hero__kicker {
  max-width: 634px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
 }

 .hero__title {
  font-size: 60px;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 30px;
 }

 .hero__features {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
 }

 .hero__feature {
  display: flex;
  gap: 10px;
  align-items: center;
 }

 .hero__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #dfdfdf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
 }

 .hero__feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
 }

 .hero__feature-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
 }

 .hero__buttons {
  display: flex;
  gap: 20px;
 }

 .btn--hero {
  height: 45px;
  width: 283px;
  max-width: 100%;
 }

 .btn--hero-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
 }

 .btn--hero-fill {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
 }

 .section {
  padding: 90px 0;
 }

 .section--capabilities {
  padding-bottom: 0;
 }

 .section--consultation {
  padding-top: 95px;
 }

 .section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 90px;
 }

 .section--consultation .section__head {
  margin-bottom: 110px;
 }

 .section__title {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 35px;
 }

 .section__lead {
  margin: 0;
  max-width: 920px;
  font-size: 35px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 40px;
  letter-spacing: -0.4px;
 }

 .grid {
  display: grid;
  gap: 20px;
 }

 .grid--audience {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .audience {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
 }

 .audience__img {
  width: 100%;
  height: 349px;
  object-fit: cover;
 }

 .audience__title {
  position: absolute;
  left: 30px;
  top: 30px;
  margin: 0;
  font-size: 30px;
  line-height: 33px;
  font-weight: 600;
  color: #000;
 }

 .price-table {
  width: 100%;
  display: grid;
  gap: 0;
 }

 .price-table__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 0;
 }

 .price-table__header-cell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: #fff;
  text-align: center;
}

 .price-table__header-cell:first-child {
  justify-content: flex-start;
  padding-left: 30px;
  text-align: left;
 }

 .price-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 0;
  align-items: center;
 }

 .price-table__cell {
  height: 82px;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--color-text);
 }

 .price-table__cell--cost {
  justify-content: center;
  text-align: center;
  font-size: 25px;
  letter-spacing: -0.6px;
 }

 .price-table__row--soft .price-table__cell {
  background: var(--color-soft);
 }

 .price-table__row--tint .price-table__cell {
  background: #ebedff;
 }

 .price-table__section {
  margin-top: 2px;
  height: 82px;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  border: 0.5px solid #093eb4;
  display: flex;
  align-items: center;
  padding-left: 30px;
 }

 .price-table__section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #000;
 }

 .page-services {
  background: var(--color-bg);
 }

 .grid--capabilities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
 }

 .capability {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
 }

 .capability__img {
  width: 100%;
  height: 597px;
  object-fit: cover;
 }

 .capability__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
 }

 .capability__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: #111;
  max-width: 290px;
  display: grid;
  gap: 10px;
 }

 .capability__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 17px;
  letter-spacing: -0.3px;
  text-align: left;
 }

 .capability__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
 }

 .grid--process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
 }

 .process {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
 }

 .process__img {
  width: 100%;
  height: 597px;
  object-fit: cover;
 }

 .process__stage {
  position: absolute;
  top: 21px;
  left: 30px;
  height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-muted);
  border-radius: 6px;
  background: #fff;
  color: var(--color-muted);
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  z-index: 2;
 }

 .process__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: #111;
  max-width: 290px;
  display: grid;
  gap: 10px;
 }

 .process__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 17px;
  letter-spacing: -0.3px;
  text-align: left;
 }

 .process__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
 }

 .consultation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
 }

 .consultation__card {
  position: relative;
  min-height: 600px;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
 }

 .consultation__card--left {
  background: linear-gradient(57.7516deg, #041b4e 0%, #093eb4 102.39%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 150px) clamp(32px, 7vw, 125px);
 }

 .consultation__title {
  margin: 0;
  max-width: 649px;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.4px;
 }

 .consultation__text {
  margin-top: 20px;
  max-width: 649px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
 }

 .consultation__text p {
  margin: 0;
 }

 .consultation__text p + p {
  margin-top: 20px;
 }

 .consultation__card--right {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 10vw, 130px) clamp(32px, 8vw, 135px);
 }

 .consultation__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 40%;
 }

 .consultation__form {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 649.59px;
 }

 .form {
  display: grid;
  gap: 16px;
 }

 .field {
  display: grid;
  gap: 11px;
 }

 .field__label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #000;
 }

 .field__input {
  width: 100%;
  height: 70px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--color-input);
  font-size: 15px;
  color: var(--color-text);
 }

 .field__phone {
  height: 70px;
  border-radius: 8px;
  background: var(--color-input);
  display: grid;
  grid-template-columns: 32px 46px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
 }

 .field__flag {
  width: 28.8px;
  height: 20.8px;
  object-fit: cover;
  box-shadow: none;
  background: transparent;
 }

 .field__code {
  font-size: 15px;
  font-weight: 500;
  color: #000;
 }

 .field__input--phone {
  height: 70px;
  background: transparent;
  padding: 0;
 }

 .consent {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 42px;
 }

 .consent__input {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(28, 28, 28, 0.6);
  border-radius: 0;
  background: transparent;
  appearance: none;
  display: inline-block;
  flex: 0 0 auto;
 }

 .consent__input:checked {
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.5 8.2 6.4 11 12.7 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-color: var(--color-primary);
 }

 .consent__text {
  font-size: 10px;
  line-height: 16px;
  color: #1c1c1c;
 }

 .btn--consultation {
  height: 45px;
 }

 .faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 602px);
  gap: 27px;
  align-items: start;
 }

 .faq__list {
  display: grid;
  gap: 10px;
 }

 .faq-item {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  background: #ebedff;
  overflow: hidden;
 }

 .faq-item:nth-child(even) {
  background: #ebedff;
 }

 .faq-item__button {
  width: 100%;
  height: 82px;
  border: 0;
  background: transparent;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
 }

 .faq-item__text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--color-text);
  text-align: left;
 }

 .faq-item__icon {
  width: 51.19px;
  height: 51.19px;
  flex: 0 0 auto;
  transition: transform 150ms ease;
 }

 .faq-item__icon img {
  width: 51.19px;
  height: 51.19px;
  object-fit: contain;
 }

 .faq-item__button[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
 }

 .faq-item__panel {
  padding: 0 30px 20px;
 }

 .faq-item__answer {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
 }

 .faq__card {
  position: relative;
  min-height: 358px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  overflow: hidden;
  padding: 54px 73px;
 }

 .faq__card-bg {
  position: absolute;
  inset: 0;
 }

 .faq__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .faq__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(55.3204deg, #041b4e 0%, #093eb4 102.39%);
 }

 .faq__card-title {
  position: relative;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.4px;
  color: #fff;
 }

 .faq__card-text {
  position: relative;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
 }

 .faq__card-field {
  position: relative;
  height: 70px;
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: 32px 46px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
 }

 .faq__card-flag {
  width: 28.8px;
  height: 20.8px;
  object-fit: cover;
  box-shadow: none;
  background: transparent;
 }

 .faq__card-code {
  font-size: 15px;
  font-weight: 500;
  color: #000;
 }

 .faq__card-input {
  width: 100%;
  height: 70px;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: #1c1c1c;
  outline: none;
  padding: 0;
 }

 .faq__card-field:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28), inset 0 0 0 1px rgba(4, 27, 78, 0.16);
 }

 .faq__card-input:focus,
 .faq__card-input:focus-visible {
  box-shadow: none;
  outline: none;
 }

 .faq__card-btn {
  position: relative;
  width: 100%;
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
 }

 .faq__card .form-message {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
  min-height: 18px;
 }

 .faq__card .form-message[data-state="error"] {
  color: #ffe4e6;
 }

 .faq__card .form-message[data-state="success"] {
  color: #dcfce7;
 }

 .footer__inner {
  display: grid;
  gap: 30px;
 }

 .footer__top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
 }

 .footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  grid-column: span 2;
  min-width: 0;
 }

 .footer__brand {
  align-items: center;
 }

 .footer__services,
 .footer__contact {
  padding-top: 8px;
 }

 .footer__contact-card {
  width: 100%;
  height: 209.59px;
  border-radius: 16px;
  background: #ebedff;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
 }

 .footer__contact-label {
  font-size: 10px;
  line-height: 16px;
  color: var(--color-text);
  margin: 0 0 8px;
  padding: 0;
 }

 .footer__pill {
  display: block;
  background: transparent;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24.8px;
  margin: 0;
  padding: 0;
  width: 344px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
 }

 .footer__icon {
  position: static;
  width: 51.19px;
  height: 51.19px;
  margin: 0 0 54px;
 }

 .footer__title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 14px;
 }

 .footer__link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 12px;
  color: #111;
 }

 .footer__bottom {
  display: grid;
  gap: 10px;
  margin-top: 24px;
 }

 .footer__small {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0;
 }

 .footer__small {
  transition: opacity 150ms ease;
 }

 .footer__small:hover,
 .footer__link:hover {
  opacity: 0.85;
 }

 @media (max-width: 1440px) {
  .container {
    max-width: 1440px;
  }

  .hero__card--content {
    padding: 96px 90px 50px 100px;
  }

  .hero__title {
    font-size: 54px;
  }

  .section__lead {
    font-size: 36px;
  }

  .grid--capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq {
    grid-template-columns: 1fr 520px;
    gap: 20px;
  }
 }

 @media (max-width: 1280px) {
  .nav {
    gap: 30px;
  }

  .header__phone {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .btn--header {
    width: 260px;
  }

  .price-table__header,
  .price-table__row {
    grid-template-columns: 1fr 360px;
  }

  .consultation {
    grid-template-columns: 1fr;
  }

  .consultation__form {
    left: 70px;
    max-width: calc(100% - 140px);
  }

  .faq {
    grid-template-columns: 1fr;
  }
 }

 @media (max-width: 1200px) {
  .header__inner {
    gap: 18px;
  }

  .brand__tagline {
    display: none;
  }

  .nav {
    gap: 24px;
  }

  .nav__link {
    font-size: 18px;
  }

  .header__right {
    gap: 12px;
  }

  .icon-btn {
    width: 44px;
    height: 44px;
  }

  .icon-btn__img {
    width: 44px;
    height: 44px;
  }

  .btn--header {
    width: auto;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero__card--image,
  .hero__image {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }
 }

 @media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .nav {
    display: none;
  }

  .header__right {
    display: none;
  }

  .burger {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(4, 27, 78, 0.18);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    flex: 0 0 auto;
  }

  .burger span {
    width: 18px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    display: block;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    transition: opacity 150ms ease, visibility 150ms ease;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 27, 78, 0.25);
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 100%);
    background: #fff;
    padding: 20px;
    transform: translateX(100%);
    max-width: 100vw;
    box-sizing: border-box;
    transition: transform 150ms ease;
    display: grid;
    align-content: start;
    gap: 16px;
  }

  .mobile-menu__close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(4, 27, 78, 0.18);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    font-size: 22px;
    line-height: 1;
    color: var(--color-primary);
  }

  .mobile-menu__nav {
    display: grid;
    gap: 14px;
  }

  .mobile-menu__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
  }

  .mobile-menu__actions {
    display: grid;
    gap: 12px;
  }

  .mobile-menu__phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
  }

  .menu-toggle:checked ~ .mobile-menu {
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle:checked ~ .mobile-menu .mobile-menu__panel {
    transform: translateX(0);
  }

  .header__inner {
    gap: 16px;
  }

  .btn--header {
    width: 200px;
  }

  .hero__card {
    height: auto;
  }

  .hero__card--content {
    padding: 40px 24px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .hero__kicker {
    font-size: 14px;
    line-height: 1.35;
  }

  .hero__feature-text {
    font-size: 14px;
  }

  .hero__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn--hero {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .section__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section__lead {
    font-size: 20px;
    line-height: 1.25;
  }

  .section--consultation {
    padding-top: 48px;
  }

  .section--prices {
    padding-top: 28px;
  }

  .section--prices .section__head {
    margin-bottom: 18px;
  }

  .section--consultation .section__head {
    margin-bottom: 24px;
  }

  .consultation {
    gap: 16px;
  }

  .consultation__card {
    border-radius: 16px;
    min-height: auto;
  }

  .consultation__title {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.2px;
  }

  .consultation__title br,
  .consultation__text br {
    display: none;
  }

  .consultation__text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.35;
  }

  .grid--audience {
    grid-template-columns: 1fr;
  }

  .audience__img {
    height: 240px;
  }

  .audience {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .audience__title {
    position: static;
    left: auto;
    top: auto;
    margin-top: 12px;
    padding: 0 16px 20px;
    font-size: 18px;
    line-height: 1.2;
  }

  .price-table__header,
  .price-table__row {
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 8px;
    align-items: stretch;
  }

  .price-table__header-cell,
  .price-table__cell {
    height: auto;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  }

  .price-table__header-cell {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.2;
    word-break: break-word;
  }

  .price-table__cell {
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.25;
    word-break: break-word;
  }

  .price-table__cell--cost {
    justify-content: center;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .price-table__section {
    height: auto;
    border-radius: 14px;
    padding: 12px;
  }

  .price-table__section-title {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .grid--capabilities,
  .grid--process {
    grid-template-columns: 1fr;
  }

  .capability__img,
  .process__img {
    height: 420px;
  }

  .capability {
    display: block;
    overflow: hidden;
  }

  .capability__content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 0;
    gap: 8px;
    min-width: 0;
  }

  .capability__title {
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(1.2em * 2);
    word-break: break-word;
  }

  .capability__text {
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: calc(1.35em * 3);
    word-break: break-word;
  }

  .process {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .process__content {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 12px 16px 20px;
  }

  .consultation__card {
    height: auto;
    min-height: auto;
  }

  .consultation__card--left {
    padding: 40px 24px;
  }

  .consultation__bg {
    display: none;
  }

  .consultation__form {
    position: relative;
    width: auto;
    max-width: none;
    padding: 18px;
  }

  .btn--consultation {
    height: 44px;
  }

  .faq {
    gap: 16px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item__button {
    height: auto;
    padding: 16px;
  }

  .faq-item__panel {
    padding: 0 16px 16px;
  }

  .faq-item__text {
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 0;
    min-width: 0;
    word-break: break-word;
  }

  .faq-item__icon,
  .faq-item__icon img {
    width: 40px;
    height: 40px;
  }

  .faq__card {
    height: auto;
    min-height: auto;
    padding: 32px 24px;
  }

  .faq__card-title {
    font-size: 22px;
    line-height: 1.1;
  }

  .faq__card-text {
    font-size: 14px;
    line-height: 1.3;
  }

  .footer__top {
    grid-template-columns: 150px 1fr;
    gap: 20px;
    grid-template-areas:
      "brand services"
      "contacts contacts";
    justify-items: stretch;
    align-items: stretch;
  }

  .footer__top > .footer__col {
    min-width: 0;
  }

  .footer__col--brand {
    grid-area: brand;
  }

  .footer__services {
    grid-area: services;
  }

  .footer__contacts {
    grid-area: contacts;
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 12px);
    justify-items: stretch;
    justify-self: stretch;
    align-self: stretch;
  }

  .footer__contact-card {
    height: auto;
    min-width: 0;
    padding: clamp(12px, 3.5vw, 18px);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    justify-self: stretch;
  }

  .footer__link {
    white-space: normal;
    overflow: visible;
    font-size: 12px;
    line-height: 1.2;
    word-break: break-word;
  }

  .footer__icon {
    width: clamp(36px, 10vw, 44px);
    height: clamp(36px, 10vw, 44px);
    margin: 0 0 12px;
  }

  .footer__pill {
    font-size: clamp(10px, 3.2vw, 12px);
    line-height: 1.25;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .faq__card-field {
    height: 56px;
    margin: 0;
    width: 100%;
  }

  .faq__card-input {
    height: 56px;
  }

  .faq__card-btn {
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__inner {
    gap: 20px;
  }
 }

 @media (max-width: 320px) {
  .brand__tagline {
    display: none;
  }

  .hero__title {
    font-size: 26px;
  }

  .btn--header {
    width: 160px;
  }
 }
