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

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: #000000;
  background: #FFFCF6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.container {
  padding: 0 60px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 0;
  background: #fffcf6;
  border-bottom: 1px solid rgba(33, 34, 35, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}
.site-header__logo svg {
  width: 171px;
  height: 30px;
  display: block;
}
.site-header__menu {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__menu-list a {
  display: inline-flex;
  align-items: center;
  color: #212223;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.site-header__menu-list a:hover {
  color: #8b0023;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}
.site-header__cta {
  white-space: nowrap;
  min-height: 48px;
  border-radius: 12px;
  padding-inline: 18px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}
.site-header__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffffff;
  color: #8b0023;
  font-size: 15px;
  font-weight: 700;
}

.currency-switcher {
  position: relative;
}
.currency-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #ebe6e1;
  border-radius: 12px;
  background: #fff;
  color: #212223;
  font-family: inherit;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}
.currency-switcher__flag {
  width: 20px;
  height: 20px;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.currency-switcher__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.currency-switcher__trigger[aria-expanded=true] .currency-switcher__arrow {
  transform: rotate(180deg);
}
.currency-switcher__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid #ebe6e1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(21, 20, 24, 0.08);
}
.currency-switcher__list button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 9px 10px;
  color: #212223;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.currency-switcher__list button:hover {
  background: #f6f2ed;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 25px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(77, 18, 24, 0.28);
}

.page-hero {
  padding: 54px 0 64px;
  overflow: hidden;
}

.container.hero {
  padding: 0 20px 0 60px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hero__content {
  width: 40%;
}
.hero__title {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 7.6vh;
  font-weight: 700;
  line-height: 100%;
}
.hero__title span {
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero__description {
  width: 83%;
  margin: 15px 0 37px;
  color: rgba(31, 23, 24, 0.7);
  font-size: 1.8vh;
  line-height: 1.45;
}
.hero__delivery-label {
  margin: 0 0 10px;
  color: rgba(31, 23, 24, 0.8);
  font-size: 1.8vh;
  line-height: 1.3;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__chip {
  padding: 8px 22px;
  border: 1px solid #DCC4C4;
  border-radius: 10px;
  background: #fff;
  font-size: 2vh;
  color: #000;
}
.hero__cta {
  margin-top: 32px;
}
.hero__media {
  width: 60%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 24px;
  }
  .site-header__inner {
    flex-wrap: wrap;
    row-gap: 14px;
  }
  .site-header__logo {
    order: 1;
  }
  .site-header__actions {
    order: 2;
    margin-left: auto;
  }
  .site-header__menu {
    order: 3;
    width: 100%;
  }
  .site-header__menu-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}
@media (max-width: 968px) {
  .site-header__actions {
    width: 100%;
    justify-content: space-between;
  }
  .site-header__cta {
    flex: 1 1 auto;
    justify-content: space-between;
  }
}
.fresh-deliveries {
  padding: 72px 0 96px;
  background: #fdfbf7;
}
.fresh-deliveries__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.fresh-deliveries__head-text {
  max-width: 720px;
}
.fresh-deliveries__title {
  margin: 0 0 12px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 4.9vh;
  font-weight: 700;
  color: #433939;
}
.fresh-deliveries__title-accent {
  display: inline-block;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fresh-deliveries__subtitle {
  margin: 0;
  font-size: 1.8vh;
  font-weight: 300;
  color: #8C8C8C;
}
.fresh-deliveries__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.fresh-deliveries__filter-btn {
  opacity: 0.5;
}
.fresh-deliveries__filter-btn.btn-gradient {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 25px;
  font-weight: 600;
  background: linear-gradient(#fdfbf7, #fdfbf7) padding-box, linear-gradient(104deg, #4d1218 0%, #b6002d 100%) border-box;
  background-clip: padding-box, border-box;
  color: #433939;
  box-shadow: none;
  transform: none;
}
.fresh-deliveries__filter-btn.btn-gradient:hover {
  color: #212223;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(77, 18, 24, 0.18);
}
.fresh-deliveries__filter-btn.btn-gradient.is-active {
  opacity: 1;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  background-clip: border-box;
  -webkit-background-clip: border-box;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.fresh-deliveries__filter-btn.btn-gradient.is-active:hover {
  box-shadow: 0 10px 24px rgba(77, 18, 24, 0.28);
}
.fresh-deliveries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.fresh-deliveries__empty {
  grid-column: 1/-1;
  margin: 0;
  padding: 28px 16px;
  text-align: center;
  color: rgba(33, 34, 35, 0.55);
  font-size: 17px;
}
.fresh-deliveries__load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.fresh-deliveries__load-more {
  padding: 11px 50px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(#fdfbf7, #fdfbf7) padding-box, linear-gradient(104deg, #4d1218 0%, #b6002d 100%) border-box;
  background-clip: padding-box, border-box;
  color: #433939;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fresh-deliveries__load-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(77, 18, 24, 0.28);
}

.car-on-the-way {
  padding: 72px 0 96px;
  background: #fdfbf7;
}
.car-on-the-way__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}
.car-on-the-way__title {
  margin: 0 0 12px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 4.9vh;
  font-weight: 700;
  color: #433939;
}
.car-on-the-way__title-accent {
  display: inline-block;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.car-on-the-way__subtitle {
  margin: 0;
  font-size: 1.8vh;
  font-weight: 300;
  color: #8c8c8c;
}
.car-on-the-way__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.car-on-the-way__empty {
  grid-column: 1/-1;
  margin: 0;
  padding: 28px 16px;
  text-align: center;
  color: rgba(33, 34, 35, 0.55);
  font-size: 17px;
}
.car-on-the-way__load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.car-on-the-way__load-more {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 11px 50px;
  border-radius: 10px;
  border: 2px solid #b6002d;
  background: #fff;
  color: #433939;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.car-on-the-way__load-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(77, 18, 24, 0.2);
}

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background: #fdfbf7;
}
.testimonials__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 0;
  pointer-events: none;
  text-align: center;
}
.testimonials__wave-img {
  width: 100%;
  max-width: min(1600px, 100vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.testimonials__inner {
  position: relative;
  z-index: 1;
}
.testimonials__title {
  margin: 0 0 40px;
  text-align: center;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 700;
  color: #433939;
  line-height: 1.2;
}
.testimonials__title-accent {
  display: inline-block;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.testimonials__empty {
  margin: 0;
  text-align: center;
  color: rgba(33, 34, 35, 0.55);
  font-size: 17px;
}
.testimonials__slider {
  margin: 0 -10px;
}
.testimonials__slider .testimonial-slide {
  padding: 0 10px;
  height: 100%;
}
.testimonials__slider .slick-dots {
  position: relative;
  bottom: auto;
  margin: 32px 0 0;
}
.testimonials__slider .slick-dots li button:before {
  font-size: 12px;
  color: #d0d0d0;
  opacity: 1;
}
.testimonials__slider .slick-dots li.slick-active button:before {
  color: #b6002d;
  opacity: 1;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 14px 40px rgba(21, 20, 24, 0.06);
  height: 100%;
  box-sizing: border-box;
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.testimonial-card__photo-wrap {
  flex: 0 0 auto;
}
.testimonial-card__photo {
  width: 72px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}
.testimonial-card__photo--placeholder {
  background: linear-gradient(135deg, #f3eeea, #e8e1dc);
}
.testimonial-card__who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.testimonial-card__name {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: #212223;
}
.testimonial-card__car {
  font-size: 14px;
  color: #8c8c8c;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(33, 34, 35, 0.82);
}
.testimonial-card__text p {
  margin: 0 0 0.75em;
}
.testimonial-card__text p:last-child {
  margin-bottom: 0;
}

.faq {
  padding: 72px 0 96px;
  background: #fdfbf7;
}
.faq__title {
  margin: 0 0 16px;
  text-align: center;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #4d1218;
}
.faq__subtitle {
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: center;
  font-size: clamp(15px, 1.9vh, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: #8c8c8c;
}
.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__empty {
  margin: 0;
  text-align: center;
  color: rgba(33, 34, 35, 0.55);
  font-size: 17px;
}

.faq-item {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(21, 20, 24, 0.06);
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.is-open {
  border-color: #b6002d;
  box-shadow: 0 16px 44px rgba(77, 18, 24, 0.1);
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: #212223;
  border-radius: 24px;
}
.faq-item__trigger:focus-visible {
  outline: 2px solid #b6002d;
  outline-offset: 2px;
}
.faq-item__question {
  font-size: clamp(16px, 2vh, 18px);
  font-weight: 700;
  line-height: 1.35;
  flex: 1 1 auto;
  min-width: 0;
}
.faq-item__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #433939;
  transition: transform 0.25s ease;
}
.faq-item__icon svg {
  display: block;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}
.faq-item__panel {
  padding: 0 28px 24px;
  margin-top: -6px;
}
.faq-item__panel[hidden] {
  display: none;
}
.faq-item__answer {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(33, 34, 35, 0.72);
  padding-top: 4px;
}
.faq-item__answer p {
  margin: 0 0 0.75em;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.fresh-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 28px;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #e6e6e6, #dab1b3) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 18px 44px rgba(21, 20, 24, 0.06);
}
.fresh-card__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0ece8;
  flex: 0 0 auto;
}
.fresh-card__slider {
  height: 100%;
  position: relative;
  z-index: 0;
}
.fresh-card__slider .slick-arrow:before {
  display: none !important;
  content: none !important;
}
.fresh-card__slider:not(.slick-initialized) .fresh-card__slide ~ .fresh-card__slide {
  display: none;
}
.fresh-card__slider .slick-list,
.fresh-card__slider .slick-track {
  height: 100%;
}
.fresh-card__slider .slick-slide {
  height: 100%;
}
.fresh-card__slider .slick-slide > div {
  height: 100%;
}
.fresh-card__slide {
  height: 100%;
  outline: none;
}
.fresh-card__slide img,
.fresh-card__slide .fresh-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.fresh-card__slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.fresh-card__slick-arrow svg {
  display: block;
  flex-shrink: 0;
}
.fresh-card__slick-arrow:hover {
  opacity: 0.85;
}
.fresh-card__slick-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.fresh-card__slick-arrow--prev {
  left: 12px;
}
.fresh-card__slick-arrow--next {
  right: 12px;
}
.fresh-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3eeea, #e8e1dc);
}
.fresh-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #e6e6e6, #dab1b3) border-box;
  background-clip: padding-box, border-box;
  color: #433939;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(21, 20, 24, 0.08);
}
.fresh-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  color: #fff;
}
.fresh-card__model {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 2.8vh;
  font-weight: 600;
  width: 62%;
}
.fresh-card__year {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 2.6vh;
  font-weight: 500;
  white-space: nowrap;
}
.fresh-card__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 22px 0 0;
}
.fresh-card__price {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  font-size: 2.8vh;
  color: #000;
}
.fresh-card__price-label {
  font-weight: 400;
}
.fresh-card__price-value {
  font-weight: 700;
}
.fresh-card__btn {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  font: inherit;
  font-size: 2vh;
}
.fresh-card__btn.btn-gradient {
  padding: 11px 20px;
  border-radius: 10px;
}
.fresh-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(14px, 1.8vh, 17px);
  color: #433939;
  line-height: 1.35;
}
.fresh-card__spec-label {
  font-weight: 600;
  margin-right: 4px;
}
.fresh-card--on-the-way .fresh-card__year {
  white-space: normal;
  text-align: right;
  max-width: 42%;
  font-weight: 700;
}
.fresh-card--on-the-way .fresh-card__btn.btn-gradient {
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-text-fill-color: #fff;
  color: #fff;
  border: 0;
}

.fresh-single {
  padding: 48px 0 80px;
  background: #fdfbf7;
}
.fresh-single__back {
  margin: 0 0 20px;
}
.fresh-single__back a {
  color: #b6002d;
  text-decoration: none;
  font-weight: 600;
}
.fresh-single__back a:hover {
  text-decoration: underline;
}
.fresh-single__header {
  margin-bottom: 28px;
}
.fresh-single__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
}
.fresh-single__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(33, 34, 35, 0.72);
  font-size: 16px;
}
.fresh-single__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.fresh-single__gallery-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.fresh-single__content {
  font-size: 17px;
  line-height: 1.6;
  color: #212223;
}

@media (max-width: 1100px) {
  .fresh-deliveries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fresh-deliveries__filters {
    margin-left: 0;
  }
  .car-on-the-way__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .fresh-deliveries {
    padding: 48px 0 64px;
  }
  .fresh-deliveries__grid {
    grid-template-columns: 1fr;
  }
  .car-on-the-way {
    padding: 48px 0 64px;
  }
  .car-on-the-way__grid {
    grid-template-columns: 1fr;
  }
}
.step-by-step {
  padding: 56px 0 80px;
  background: #fdfbf7;
}
.step-by-step__panel {
  background: #fff;
  border-radius: 28px;
  padding: 40px 20px;
  box-shadow: 0 18px 48px rgba(21, 20, 24, 0.06);
}
.step-by-step__title {
  margin: 0 auto 100px;
  max-width: 920px;
  text-align: center;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 700;
  color: #433939;
}
.step-by-step__title-accent {
  display: inline-block;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.step-by-step__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-by-step__strip {
  position: absolute;
  left: 50%;
  top: -32px;
  width: min(100%, 1015px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.step-by-step__strip-svg {
  display: block;
  width: 100%;
  height: auto;
}
.step-by-step__row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.step-by-step__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-by-step__col--shift .step-by-step__tab {
  transform: translate(12px, -14px);
}
.step-by-step__tab {
  position: relative;
  z-index: 2;
  padding: 20px 50px;
  width: auto;
  font-size: 2.5vh;
  border-radius: 20px;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  box-shadow: 0 10px 24px rgba(77, 18, 24, 0.16);
}
.step-by-step__tab.tab-1 {
  margin-bottom: 70px;
}
.step-by-step__tab.tab-2 {
  margin-bottom: 130px;
}
.step-by-step__tab.tab-3 {
  margin-bottom: 23px;
}
.step-by-step__card {
  width: 100%;
  padding: 22px 20px;
  border-radius: 18px;
  background: #faf6f1;
  text-align: left;
  border: 1px solid rgba(218, 177, 179, 0.4);
}
.step-by-step__card-title {
  margin: 0 0 14px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 2.5vh;
  font-weight: 600;
  line-height: 1.3;
  color: #433939;
}
.step-by-step__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-by-step__card-text {
  margin: 0;
  font-weight: 300;
  font-size: 1.8vh;
  line-height: 1.55;
  color: #433939;
}
.step-by-step__footer {
  display: flex;
  justify-content: center;
}
.step-by-step__cta {
  gap: 8px;
}

@media (max-width: 960px) {
  .step-by-step__row {
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 520px;
    margin: 0 auto;
  }
  .step-by-step__col {
    flex: 0 0 auto;
    width: 100%;
  }
  .step-by-step__col--shift .step-by-step__tab {
    transform: none;
  }
  .step-by-step__strip {
    opacity: 0.55;
    top: 4px;
  }
}
.choose-us {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
  background: #fdfbf7;
  overflow: visible;
}
.choose-us__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 72px);
}
.choose-us__col--sticky {
  flex: 0 1 670px;
  min-width: 0;
}
.choose-us__sticky {
  position: sticky;
  top: max(32px, 50vh - 14rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.choose-us__title {
  margin: 0 0 18px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #433939;
}
.choose-us__title-accent {
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.choose-us__lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(67, 57, 57, 0.72);
}
.choose-us__cta {
  gap: 8px;
}
.choose-us__cta svg {
  flex: 0 0 auto;
}
.choose-us__col--list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 720px;
  margin-left: auto;
}
.choose-us__sep {
  display: flex;
  justify-content: center;
  margin: clamp(20px, 3vw, 32px) 0;
}
.choose-us__sep img {
  width: min(100%, 507px);
  height: auto;
  display: block;
}
.choose-us__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.5vw, 28px);
}
.choose-us__icon {
  flex: 0 0 auto;
  width: 60px;
  height: auto;
  display: block;
  margin-top: 4px;
}
.choose-us__item-body {
  min-width: 0;
}
.choose-us__item-title {
  margin: 0 0 10px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(104deg, #4d1218 0%, #b6002d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.choose-us__item-text {
  margin: 0;
  width: 66%;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  color: #433939;
}

@media (max-width: 900px) {
  .choose-us__grid {
    flex-direction: column;
    gap: 36px;
  }
  .choose-us__col--sticky {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
  }
  .choose-us__sticky {
    position: static;
  }
  .choose-us__col--list {
    margin-left: 0;
    max-width: none;
  }
}/*# sourceMappingURL=style.css.map */