:root {
  --color-bg-page: #f9fafb;
  --color-text-main: #1b1b1b;
  --color-text-muted: rgba(27, 27, 27, 0.8);
  --color-text-caption: rgba(27, 27, 27, 0.7);
  --color-accent: #eb1919;
  --radius-card: 10px;
  --shadow-soft: 0 24px 40px rgba(0, 0, 0, 0.08);
  --font-sans-main: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', 'Roboto', sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans-main);
  color: var(--color-text-main);
  background-color: var(--color-bg-page);
}

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

.page {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.437);
  backdrop-filter: blur(14.199999809265137px);
}

.site-header__inner {
  max-width: 1504px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  pointer-events: auto;

}

.site-header__logo img {
  display: block;
  height: 40px;
}

.site-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 60%);
  padding: 10px;
  box-sizing: border-box;
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: auto;
}

.site-header__burger span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.is-open .site-header__burger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .site-header__burger span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__burger span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__link {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.site-header__link:hover {
  color: #ffffff;
}

.site-header__cta {
  white-space: nowrap;
}

/* Offset for fixed header when scrolling to anchors */
[id$='heading'] {
  scroll-margin-top: 96px;
}

.section {
  width: 100%;
  padding: 80px 16px;
}

.section-inner {
  max-width: 1504px;
  margin: 0 auto;
}

.stats-section {
  padding: 40px 16px 0;
}

.stats-card {
  max-width: 1504px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.stat__icon {
  width: 76px;
  height: 76px;
}

.stat-badge {
  position: relative;
  isolation: isolate;
  width: 67.264px;
  height: 67.264px;
  border-radius: 8.736px;
  background: rgba(255, 55, 55, 0.71);
  backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(8.74px, 8.74px);
  background: #eb1919;
  border-radius: 8.736px;
  filter: blur(0.844px);
  z-index: -1;
}

.stat-badge__icon {
  width: 40px;
  height: 40px;
}

.stat__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.0703px;
  color: var(--color-text-main);
}

.stat__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--color-text-main);
}

.production .section-inner {
  max-width: 1504px;
}

.production__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.production__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.production__title {
  max-width: 480px;

}

.production__lead {
  margin: 0;
  max-width: 480px;
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.production__cta {
  width: fit-content;
  padding: 18px 36px;
  min-height: 60px;
}

.case-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
  align-self: start;
  min-height: 408px;
}

.case-card__media {
  position: relative;
  height: 192px;
  overflow: hidden;
}

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

.case-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 27, 0.7), rgba(27, 27, 27, 0));
}

.case-card__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.case-card__tag-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.case-card__tag-icon img {
  width: 24px;
  height: 24px;
}

.case-card__tag-title {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.case-card__body {
  padding: 24px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 216px;
  flex: 1 1 auto;
}

.case-card__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-card__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(27, 27, 27, 0.7);
}

.case-card__label--accent {
  color: var(--color-accent);
}

.case-card__text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.9);
  max-width: 430px;
}

.case-card__text--strong {
  color: var(--color-text-main);
}

.benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
  justify-content: center;
}

.benefits__header {
  width: 100%;
  max-width: 1504px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.benefits__title {
  margin: 0;
}

.benefits__subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: var(--color-text-muted);
  max-width: 980px;
}

.benefits__tabs {
  width: 567px;
  max-width: 100%;
  height: 56px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.benefits__content[hidden] {
  display: none;
}

.benefits-tab {
  height: 48px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex: 1 1 0;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.8);
  cursor: pointer;
  user-select: none;
}

.benefits-tab__icon {
  width: 20px;
  height: 20px;
}

.benefits-tab.is-active {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefits-tab.is-active .benefits-tab__icon {
  filter: brightness(0) invert(1);
}

.benefits__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.benefits__caption {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.0703px;
  text-align: center;
  color: var(--color-text-main);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1504px;
}

.benefit-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon img {
  width: 28px;
  height: 28px;
}

.benefit-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-card__title {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: var(--color-text-main);
}

.benefit-card__text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.8);
}

.lead-form {
  position: relative;
  width: 100%;
  padding: 80px 16px;
  background: linear-gradient(163.316deg, rgb(47, 47, 47) 25.481%, rgb(27, 27, 27) 113.89%);
}

.lead-form__inner {
  max-width: 1044px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.lead-form__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.lead-form__title {
  margin: 0;
  font-size: 52px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
}

.lead-form__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 1030px;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.lead-form__benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead-form__benefits-title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0.0703px;
  color: #ffffff;
}

.lead-form__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form__item {
  height: 72px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}

.lead-form__item--tall {
  height: 88px;
}

.lead-form__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #d70505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.lead-form__item-icon img {
  width: 20px;
  height: 20px;
}

.lead-form__item-text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: rgba(255, 255, 255, 0.9);
}

.lead-form__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.lead-form__card-title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.0703px;
  font-weight: 400;
  color: var(--color-text-main);
}

.lead-form__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form__textarea {
  min-height: 98px;
  border-radius: 10px;
  border: 1px solid #d1d5dc;
  padding: 12px 16px;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  resize: vertical;
}

.lead-form__textarea::placeholder {
  color: rgba(16, 24, 40, 0.5);
}

.lead-form__textarea:focus {
  outline: none;
  border-color: rgba(235, 25, 25, 0.85);
  box-shadow: 0 0 0 3px rgba(235, 25, 25, 0.18);
}

.lead-form__file {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-form__file-btn {
  height: 50px;
  border-radius: 10px;
  border: 2px solid #d1d5dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  cursor: pointer;
  color: rgba(27, 27, 27, 0.8);
  user-select: none;
}

.lead-form__file-btn img {
  width: 20px;
  height: 20px;
}

.lead-form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lead-form__submit {
  width: 100%;
  height: 50px;
  padding: 10px 16px;
}

.lead-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: rgba(27, 27, 27, 0.7);
  text-align: center;
}

.analogs__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.analogs__title {
  max-width: 1095px;
  line-height: 78px;
}

.analogs__subtitle {
  margin: 0;
  max-width: 715px;
  color: var(--color-text-muted);
}

.analogs__lists {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.analogs-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.analogs-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: var(--color-text-main);
}

.analogs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.analogs-list__item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.9);
}

.analogs-list__bullet {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.analogs-list__bullet img {
  width: 8px;
  height: 6px;
}

.analogs-cta {
  margin-top: 48px;
  background: var(--color-accent);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.analogs-cta__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analogs-cta__title {
  margin: 0;
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  color: #ffffff;
}

.analogs-cta__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #ffffff;
  max-width: 584px;
}

.analogs-cta__button {
  height: 60px;
  width: 210px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.analogs-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.analogs-cta__button:active {
  transform: translateY(0);
}

.analogs-badges {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pre-request {
  background: #ffffff;
}

.pre-request__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.pre-request__header {
  width: 100%;
  max-width: 896px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.pre-request__card {
  width: 100%;
  max-width: 896px;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.pre-request__title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: var(--color-text-main);
}

.pre-request__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.pre-request__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pre-request__bullet {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pre-request__bullet img {
  width: 16px;
  height: 16px;
}

.pre-request__text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.9);
}

.pre-request__button {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 16px 31px;
  border-radius: 10px;
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.pre-request__button:hover {
  filter: brightness(1.05);
}

.pre-request__button-icon {
  width: 20px;
  height: 20px;
}

.pre-request__button-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.pre-request__note {
  width: 100%;
  max-width: 686px;
  background: #fef2f2;
  border-radius: 14px;
  border: 1px solid #ffc9c9;
  padding: 25px 25px 24px;
}

.pre-request__note-text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.9);
  text-align: center;
}

.analogs-badge {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.analogs-badge__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.analogs-badge__icon img {
  width: 28px;
  height: 28px;
}

.analogs-badge__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--color-text-main);
}

.analogs-badge__text {
  font-size: 14px;
  line-height: 20px;
  color: rgba(27, 27, 27, 0.7);
}

.services {
  background: #f9fafb;
}

.services__inner {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
}

.services__header {
  width: 100%;
  max-width: 1504px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.services__title {
  margin: 0;
}

.services__subtitle {
  margin: 0;
  color: var(--color-text-muted);
}

.services-steps {
  width: 100%;
  max-width: 1170px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.services-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.services-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-step__icon img {
  width: 32px;
  height: 32px;
}

.services-step__bar {
  width: 100%;
  height: 4px;
  background: #f3ebeb;
  border-radius: 999px;
}

.services-step__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.services-step__num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--color-accent);
}

.services-step__label {
  max-width: 105px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(27, 27, 27, 0.9);
}

.services__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.services__note {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.8);
}

.fullcycle {
  background: #ffffff;
}

.fullcycle__inner {
  display: flex;
  flex-direction: column;
  gap: 43px;
  align-items: center;
}

.fullcycle__header {
  width: 100%;
  max-width: 1504px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.fullcycle__grid {
  width: 100%;
  max-width: 1505px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.fullcycle-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 426px;
}

.fullcycle-card__media {
  height: 224px;
  overflow: hidden;
  background: #ffffff;
}

.fullcycle-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.fullcycle-card--concept .fullcycle-card__media img {
  object-position: 50% 18%;
}

.fullcycle-card--docs .fullcycle-card__media img {
  object-position: 50% 55%;
}

.fullcycle-card--model .fullcycle-card__media img {
  object-position: 50% 40%;
}

.fullcycle-card--production .fullcycle-card__media img {
  object-position: 50% 50%;
}

.fullcycle-card__body {
  background: #f9fafb;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.fullcycle-card__stage {
  margin: 0 0 8px;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-accent);
}

.fullcycle-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  font-weight: 400;
  text-align: center;
  color: var(--color-text-main);
}

.fullcycle-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  text-align: center;
  color: rgba(27, 27, 27, 0.8);
}

.projects {
  background: #f9fafb;
}

.projects__inner {
  display: flex;
  flex-direction: column;
  gap: 43px;
  align-items: center;
}

.projects__header {
  width: 100%;
  max-width: 1504px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.projects__grid {
  width: 100%;
  max-width: 1504px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 30px;
}

.project-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 384px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.project-card__media {
  position: relative;
  height: 252px;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-card__media-overlay-img {
  position: absolute;
  inset: 0;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: #5d2a2a;
  opacity: 0.2;
  mix-blend-mode: hard-light;
  pointer-events: none;
}

.project-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  font-weight: 400;
  color: var(--color-text-main);
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  color: rgba(27, 27, 27, 0.9);
}

.project-card__pin {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.project-card__city {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.project-card--cagi .project-card__media img {
  object-position: 50% 75%;
}

.project-card--mpk .project-card__media img {
  object-position: 50% 30%;
}

.project-card--luzhniki .project-card__media img {
  object-position: 50% 40%;
}

.project-card--kulakov .project-card__media img {
  object-position: 50% 25%;
}

.project-card--worldclass .project-card__media img {
  object-position: 50% 35%;
}

.project-card--qiwi .project-card__media img {
  object-position: 50% 35%;
}

.faq {
  background: #ffffff;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: center;
}

.faq__header {
  width: 100%;
  max-width: 1504px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.faq__list {
  width: 100%;
  max-width: 896px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-item__button {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-item__question {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: #1b1b1b;
  text-align: left;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.faq-item__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-item__content {
  padding: 0 24px 20px;
}

.faq-item__answer {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.9);
}

.faq-item.is-open {
  border-color: #e5e7eb;
}

.faq-item.is-open .faq-item__button {
  padding-bottom: 16px;
}

.faq-item.is-open .faq-item__content {
  padding-top: 0;
}

.faq-item.is-open .faq-item__icon img {
  content: url('./assets/figma/136704a1aad49a2e0045cf91abc6deb70cc7b73b.svg');
}

.faq__footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.faq__note {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.8);
}

.request {
  background: #f9fafb;
}

.request__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.request__header {
  width: 100%;
  max-width: 898px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.request__header .section-subtitle {
  max-width: 768px;
}

.request-card {
  width: 100%;
  max-width: 896px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 48px;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.request-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.request-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.request-form__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(27, 27, 27, 0.9);
}

.request-form__input,
.request-form__select {
  height: 50px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #d1d5dc;
  background: #ffffff;
  font-size: 14px;
  line-height: 20px;
  color: #1b1b1b;
}

.request-form__select {
  padding-right: 32px;
}

.request-form__textarea {
  min-height: 122px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5dc;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #1b1b1b;
}

.request-form__textarea::placeholder {
  color: rgba(16, 24, 40, 0.5);
}

.request-form__file {
  display: block;
  border-radius: 10px;
  border: 2px dashed #d1d5dc;
  cursor: pointer;
}

.request-form__file-input {
  display: none;
}

.request-form__file-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.request-form__file-icon {
  width: 20px;
  height: 20px;
}

.request-form__file-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.request-form__file-text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: rgba(27, 27, 27, 0.8);
}

.request-form__submit {
  width: 100%;
  height: 60px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4395px;
}

.request-form__policy {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: rgba(27, 27, 27, 0.7);
  text-align: center;
}

.request-form__policy-link {
  color: var(--color-accent);
  text-decoration: none;
}

.request-form__policy-link:hover {
  text-decoration: underline;
}

.footer {
  background: #1b1b1b;
  color: #ffffff;
}

.footer__inner {
  max-width: 1504px;
  margin: 0 auto;
  padding: 48px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
}

.footer__logo-mark {
  /* width: 96px; */
  height: 96px;
}

.footer__logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo-text img {
  display: block;
}

.footer__heading {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: #ffffff;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.footer__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__link,
.footer__text,
.footer__cta-text,
.footer__copy,
.footer__legal .footer__link {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.footer__link {
  color: #d1d5dc;
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__text {
  color: #d1d5dc;
}

.footer__cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer__cta-button {
  width: 100%;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid #ffffff;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal .footer__link {
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 880px;
  background-color: #1b1b1b;
  background-image: url('./assets/figma/d9ea35ea91cfa40215a8e8d8802371fd68eda7d3.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 70% 45%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0) 55%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
}

.hero__bg-mask {
  position: absolute;
  width: 1372px;
  height: 1285px;
  top: -91px;
  left: 50%;
  transform: translateX(-36%);
  -webkit-mask-image: url('./assets/figma/c969d57cc888dc463424bf80e244e540e7db19be.svg');
  mask-image: url('./assets/figma/c969d57cc888dc463424bf80e244e540e7db19be.svg');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 1;
}

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

.hero__bg-img--overlay {
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  max-width: 1504px;
  margin: 0 auto;
  padding: 174px 16px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.hero__content {
  width: 100%;
  max-width: 854px;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.hero__title {
  margin: 0;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero__subtitle {
  margin: 0;
  max-width: 488px;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: rgba(255, 255, 255, 0.95);
}

.hero__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.hero__feature-icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__feature-icon img {
  width: 16px;
  height: 16px;
}

.hero__feature-text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.hero__button {
  min-height: 60px;
  padding: 18px 36px;
}

.hero__button-icon {
  width: 20px;
  height: 20px;
}

.button--outline {
  background-color: #ffffff;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.button--outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.button--outline:active {
  transform: translateY(0);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.1);
}

.hero__card {
  flex: none;
  width: 314px;
  border-radius: 10px;
  background-color: #ffffff;
  color: var(--color-text-main);
  padding: 24px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.hero__card-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.0703px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: rgba(27, 27, 27, 0.9);
}

.field__input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #d1d5dc;
  padding: 0 12px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.field__input:focus {
  border-color: rgba(235, 25, 25, 0.85);
  box-shadow: 0 0 0 3px rgba(235, 25, 25, 0.18);
}

.hero-form__submit {
  width: 100%;
  height: 50px;
  padding: 16px 17px;
}

.hero-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: rgba(27, 27, 27, 0.7);
  text-align: center;
}

.section-rooftops .section-inner {
  display: flex;
  flex-direction: column;
  gap: 61px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header--centered {
  align-items: center;
  text-align: center;
}

.section-header--tight {
  gap: 0;
}

.heading {
  margin: 0;
  letter-spacing: 0;
}

.heading--xl,
.section-title {
  font-size: 52px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0;
  max-width: 746px;
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.section-subtitle--lg {
  margin-top: 12px;
}

.section-caption {
  margin: 0;
  margin-top: 4px;
  color: var(--color-text-caption);
  font-size: 16px;
  line-height: 1.5;
}

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

.rooftops-card {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.rooftops-card__image {
  width: 100%;
  height: 336px;
  object-fit: cover;
}

.section-components .section-inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.components-diagram {
  position: relative;
  width: 100%;
  max-width: 1504px;
  min-height: 680px;
}

.components-diagram__base {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.components-diagram__base-image {
  max-width: 660px;
  width: 100%;
  height: auto;
}

.components-label {
  position: absolute;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text-main);
}

.components-label__line {
  position: absolute;
  top: 50%;
  width: 180px;
  border-top: 1.5px solid var(--color-accent);
}

.components-label--left .components-label__line {
  right: -180px;
}

.components-label--right .components-label__line {
  left: -180px;
}

.components-label__card {
  margin: 0;
  padding: 12px;
  border-radius: var(--radius-card);
  border: 2px solid var(--color-accent);
  background-color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.components-label__card--dark {
  background-color: #1b1b1b;
}

.components-label__card img {
  border-radius: 4px;
}

.components-label__text {
  margin: 8px 0 0;
}

.components-label__text--right {
  text-align: right;
}

/* Approximate positions for labels around the base image */

.components-label--left.components-label--top {
  top: 8%;
  left: 0;
}

.components-label--left.components-label--upper-middle {
  top: 24%;
  left: 2%;
}

.components-label--left.components-label--middle {
  top: 42%;
  left: 3%;
}

.components-label--left.components-label--lower-middle {
  top: 62%;
  left: 2%;
}

.components-label--right.components-label--top {
  top: 6%;
  right: 0;
}

.components-label--right.components-label--upper-middle {
  top: 20%;
  right: 4%;
}

.components-label--right.components-label--middle {
  top: 36%;
  right: 2%;
}

.components-label--right.components-label--lower-middle {
  top: 52%;
  right: 0;
}

.components-label--right.components-label--lower {
  top: 66%;
  right: 6%;
}

.components-label--right.components-label--bottom {
  top: 78%;
  right: 3%;
}

.components-label--right.components-label--bottom-right {
  top: 84%;
  right: -2%;
}

.section-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.button--primary {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(235, 25, 25, 0.4);
}

.button--primary:hover {
  background-color: #d01616;
  transform: translateY(-1px);
}

.button--primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(235, 25, 25, 0.35);
}

/* Responsive adjustments */

@media (max-width: 1200px) {
  .fullcycle__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .components-diagram__base-image {
    max-width: 560px;
  }

  .components-label__line {
    width: 140px;
  }

  .components-label--left .components-label__line {
    right: -140px;
  }

  .components-label--right .components-label__line {
    left: -140px;
  }
}

@media (max-width: 992px) {
  .site-header__inner {
    padding-top: 12px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-header__nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    display: none;
  }

  .site-header__menu {
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-header__burger {
    display: inline-flex;
  }

  .site-header.is-open .site-header__nav {
    display: flex;
  }

  .section {
    padding: 56px 16px;
  }

  .stats-section {
    padding-top: 32px;
  }

  .stats-card {
    padding: 56px 16px;
  }

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

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

  .production__intro {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px;
  }

  .faq__inner {
    align-items: stretch;
  }

  .faq__list {
    max-width: 100%;
  }

  .request__inner {
    align-items: stretch;
  }

  .request-card {
    padding: 32px 24px;
  }

  .request-form__row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 56px 16px;
  }

  .lead-form__inner {
    max-width: 720px;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .analogs__title {
    line-height: 1.15;
  }

  .analogs__lists {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pre-request__card {
    padding: 32px 24px;
  }

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

  .analogs-card {
    padding: 24px;
  }

  .analogs-cta {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .analogs-cta__button {
    width: 100%;
  }

  .services-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .services-step {
    flex: 0 1 calc(33.333% - 18px);
    max-width: 220px;
  }

  .services-step__bar {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    padding-top: 120px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__card {
    width: 100%;
    max-width: 420px;
  }

  .hero__bg-mask {
    left: 62%;
    transform: translateX(-50%);
    opacity: 0.92;
  }

  .heading--xl {
    font-size: 40px;
  }

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

  .rooftops-card__image {
    height: 260px;
  }

  .components-diagram {
    min-height: 960px;
  }

  .components-diagram__base-image {
    max-width: 420px;
  }

  .components-label {
    position: static;
    max-width: none;
    margin-bottom: 20px;
  }

  .components-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .components-diagram__base {
    position: static;
    order: -1;
    pointer-events: auto;
  }

  .components-label__line {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    padding-top: 8px;
    gap: 8px;
  }

  .site-header__logo img {
    height: 32px;
  }

  .site-header__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .site-header__menu {
    gap: 8px;
    flex-wrap: wrap;
  }

  .site-header__cta {
    display: none;
  }

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

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

  .faq-item__button {
    padding: 18px 16px;
    gap: 16px;
  }

  .faq-item__question {
    font-size: 16px;
    line-height: 24px;
  }

  .request-card {
    padding: 24px 16px;
  }

  .heading--xl {
    font-size: 32px;
  }

  .stats-card {
    padding: 40px 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

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

  .production__cta {
    width: 100%;
  }

  .case-card__body {
    min-height: 0;
  }

  .benefits-tab {
    padding: 0 14px;
    font-size: 14px;
  }

  .lead-form__title {
    font-size: 32px;
  }

  .lead-form__subtitle {
    font-size: 18px;
  }

  .lead-form__card {
    padding: 24px;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .analogs-badges {
    grid-template-columns: 1fr;
  }

  .pre-request__card {
    padding: 24px 16px;
  }

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

  .services-step {
    flex: 0 1 calc(50% - 18px);
  }

  .stat__icon {
    width: 68px;
    height: 68px;
  }

  .hero__inner {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__card {
    max-width: none;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .section-caption {
    font-size: 14px;
  }

  .button {
    width: 100%;
  }
}

