.main-content {
  max-width: 76rem;
}

.home-page {
  padding: 1rem 0 3rem;
}

.home-hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-hero__top {
  text-align: center;
}

.home-hero__title {
  color: #0c0d0f;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 600;
  margin: 0;
}

.home-hero__flag {
  display: inline-block;
  width: 1.12em;
  height: 0.72em;
  border-radius: 0.18em;
  vertical-align: 0.06em;
  background: linear-gradient(to bottom, #1e6dd8 50%, #f4d448 50%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.home-hero__brands {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
}

.home-hero__actions {
  margin-top: 1.35rem;
}

.home-hero__cta {
  background: #0b0b0b;
  color: #fff;
  border-radius: 999px;
  min-width: 8.75rem;
  padding: 0.6rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-hero__cta:hover {
  background: #2b2b2b;
  color: #fff;
}

.home-hero__meta {
  margin-top: 0.65rem;
  color: #9aa3b1;
  font-size: 0.9rem;
}

.home-hero-slider {
  margin: 1.25rem 0 2rem;
  position: relative;
}

.home-hero-slider__track {
  width: 100%;
  position: relative;
}

.home-hero-slide {
  display: none;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 21rem;
  border: 1px solid #eceff4;
  position: relative;
  padding: 0;
}

.home-hero-slide.is-active {
  display: block;
}

.home-hero-slide__image {
  width: 100%;
  min-height: 21rem;
  position: relative;
  background: #dedfe3;
}

.home-hero-slide__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-hero-slide__placeholder-title {
  margin-top: -6.6rem;
  color: #a4a7ae;
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

.home-hero-slide__placeholder-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 3.25rem;
  text-align: center;
}

.home-hero-slide__placeholder-caption h3 {
  margin: 0;
  color: #0b0b0d;
  font-size: clamp(1.25rem, 2.1vw, 2.2rem);
  line-height: 1.2;
}

.home-hero-slide__placeholder-caption p {
  margin: 0.45rem 0 0;
  color: #111216;
  font-size: clamp(0.5rem, 1vw, 1.95rem);
  line-height: 1.3;
}

.home-hero-slider__arrow {
  position: absolute;
  top: calc(50% - 1.2rem);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid #d8dde5;
  background: rgba(255, 255, 255, 0.92);
  color: #495261;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.home-hero-slider__arrow:hover {
  background: #fff;
  color: #1f2733;
}

.home-hero-slider__arrow--prev {
  left: 0.65rem;
}

.home-hero-slider__arrow--next {
  right: 0.65rem;
}

.home-hero-slider__dots {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.home-hero-slider__dots button {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #c7ccd6;
  border: 0;
  padding: 0;
}

.home-hero-slider__dots button.is-active {
  background: #1e5dbc;
}

@media (max-width: 768px) {
  .home-page {
    padding-top: 0.5rem;
  }

  .home-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
  }

  .home-hero__brands {
    font-size: 0.82rem;
    gap: 0.5rem 0.85rem;
  }

  .home-hero-slide {
    min-height: 13rem;
    border-radius: 0.85rem;
  }

  .home-hero-slide__image {
    min-height: 13rem;
  }

  .home-hero-slide__placeholder-title {
    margin-top: -0.8rem;
  }

  .home-hero-slide__placeholder-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.7rem;
  }

  .home-hero-slider__arrow {
    width: 2rem;
    height: 2rem;
    top: calc(50% - 1rem);
    font-size: 0.95rem;
  }
}

.home-steps-block {
  margin-top: 2.25rem;
}

.home-steps-block__content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

.home-steps-block__left h2 {
  margin: 0;
  color: #121318;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 40rem;
}

.home-steps-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.home-steps-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #1f222a;
  font-size: 1.2rem;
  line-height: 1.5;
}

.home-steps-list li span {
  width: 2rem;
  height: 2rem;
  flex: 0 0 1.9rem;
  border-radius: 50%;
  border: 1px solid #e0e4eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #4c5463;
  background: #f9fafc;
}

.home-steps-list li:nth-child(4) span {
  border-color: #1e5dbc;
  color: #fff;
  background: #1e5dbc;
}

.home-steps-block__cta {
  margin-top: 2.5rem;
  background: #0b0b0b;
  color: #fff;
  border-radius: 999px;
  padding: 0.62rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.home-steps-block__cta:hover {
  background: #242424;
  color: #fff;
}

.home-steps-visual {
  min-height: 29rem;
  border-radius: 1rem;
  border: 1px solid #e8ebf0;
  background: linear-gradient(130deg, #e8ebf1 0%, #d9dee7 52%, #eceff5 100%);
  position: relative;
  overflow: hidden;
}

.home-steps-visual::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto 10%;
  height: 62%;
  border-radius: 0.85rem;
  background: linear-gradient(140deg, #b6c1d1 0%, #9eaec4 60%, #bcc6d5 100%);
}

.home-steps-visual__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(228, 233, 241, 0.95);
  color: #6e7888;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.33rem 0.65rem;
}

.home-steps-visual__timeline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.15rem;
  width: calc(100% - 3rem);
  border-radius: 0.85rem;
  border: 1px solid rgba(224, 230, 238, 0.95);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.home-steps-visual__timeline span {
  display: block;
  height: 3rem;
  border-radius: 0.6rem;
  background: linear-gradient(130deg, #d7dde7 0%, #c8d1de 100%);
}

@media (max-width: 991px) {
  .home-steps-block__content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .home-steps-visual {
    min-height: 20rem;
  }
}

.home-advantages {
  margin-top: 2.5rem;
}

.home-advantages h2 {
  margin: 5rem 0 3rem;
  text-align: center;
  color: #121318;
  font-size: 2.5rem;
  line-height: 1.18;
}

.home-advantages h2 span {
  font-weight: 400;
}

.home-advantages__grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.05rem;
}

.home-advantage-card {
  text-align: center;
}

.home-advantage-card__icon {
  margin: 0 auto 0.8rem;
  width: 4rem;
  height: 4rem;
  border-radius: 0.9rem;
  background: linear-gradient(140deg, #dbdfec 0%, #cfd5e5 100%);
  border: 1px solid #e3e7f0;
}

.home-advantage-card h3 {
  margin: 0;
  color: #13161d;
  font-size: 1.2rem;
  line-height: 1.18;
  font-weight: 600;
}

.home-advantage-card p {
  margin: 1.2rem 0 0;
  color: #1f232b;
  line-height: 1.45;
}

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

@media (max-width: 640px) {
  .home-advantages__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

.home-savings {
  margin-top: 2.6rem;
}

.home-savings h2 {
  margin: 5rem 0 3rem;
  text-align: center;
  color: #121318;
  font-size: 2.5rem;
  line-height: 1.2;
}

.home-savings__categories {
  margin-top: 1.45rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-savings__categories button {
  border: 1px solid #e2e7ef;
  background: #f4f6fa;
  border-radius: 0.6rem;
  color: #525a68;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
}

.home-savings__categories button.is-active {
  border-color: #1c1f27;
  background: #fff;
  color: #161921;
}

.home-savings__content {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.home-savings__product {
  min-height: 23.5rem;
  border-radius: 1rem;
  border: 1px solid #e8ecf2;
  background: linear-gradient(140deg, #eff2f7 0%, #e3e8f0 45%, #f2f5fa 100%);
  position: relative;
  overflow: hidden;
}

.home-savings__product::before {
  content: "PRODUCT IMAGE PLACEHOLDER";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #98a1b0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.home-savings__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: #34be78;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.7rem;
}

.home-savings__right h3 {
  margin: 0 0 0.75rem;
  color: #14171e;
  font-size: 1.5rem;
}

.home-savings__price-card {
  border-radius: 0.9rem;
  border: 1px solid #eceff4;
  background: #f7f8fb;
  padding: 1rem;
}

.home-savings__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #21252e;
  font-size: 1.1rem;
}

.home-savings__price-row strong {
  font-size: 1.3rem;
  font-weight: 400;
  color: #202430;
}

.home-savings__price-row .is-green {
  color: #2ea96b;
}
.home-savings__vs {
  margin: 0.65rem 0;
  text-align: center;
  color: #5b6270;
  font-weight: 400;
  font-size: 0.8rem;
}
.home-savings__right {
  max-width: 400px;
  margin: auto;
}
.home-savings__right p {
  margin: 0.9rem 0 0;
  color: #7a818e;
  font-size: 0.82rem;
  line-height: 1.45;
}

.home-savings__cta {
  margin-top: 1rem;
  background: #1e5dbc;
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  padding: 0.72rem 1.7rem;
}

.home-savings__cta:hover {
  background: #d9342a;
  color: #fff;
}

@media (max-width: 991px) {
  .home-savings__content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .home-savings__product {
    min-height: 16rem;
  }
}

.home-calculator {
  margin-top: 2.75rem;
}

.home-calculator__content {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.2rem;
  align-items: start;
  margin-top: 6rem;
}

.home-calculator__left {
  border-radius: 1rem;
  border: 1px solid #d8dde6;
  background: #e3e7ee;
  padding: 1.2rem;
}

.home-calculator__left h3 {
  margin: 0 0 1rem;
  color: #1a1e25;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  line-height: 1.25;
}

.home-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-calculator-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.home-calculator-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: #2a2f39;
  font-size: 0.82rem;
}

.home-calculator-input {
  border: 1px solid #dfe4ec;
  background: #f7f9fc;
  border-radius: 0.75rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  color: #1f2430;
}

.home-calculator-input em {
  font-style: normal;
  color: #5b6270;
  margin-left: auto;
}

.home-calculator-input span {
  color: #6e7584;
}

.home-calculator-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.home-calculator-tabs button {
  border: 1px solid #d9dee7;
  background: #f7f9fc;
  border-radius: 0.65rem;
  min-height: 2.2rem;
  color: #2b303a;
  font-size: 0.86rem;
}

.home-calculator-tabs button.is-active {
  background: #8fa4bf;
  color: #fff;
  border-color: #849ab6;
}

.home-calculator-summary {
  margin-top: 0.25rem;
  border-top: 1px solid #bec6d2;
  padding-top: 0.3rem;
}

.home-calculator-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid #c5ccd8;
  min-height: 2.2rem;
  color: #272c36;
}

.home-calculator-summary div:last-child {
  border-bottom: 0;
}

.home-calculator-summary strong {
  color: #1a1f2a;
}

.home-calculator__right {
  padding-top: 1.1rem;
}

.home-calculator__right h2 {
  margin: 0;
  color: #14171f;
  font-size: 2.5rem;
  line-height: 1.2;
  max-width: 24rem;
  margin-top: 6rem;
}

.home-calculator__right p {
  margin: 2rem 0 0;
  color: #262b34;
  line-height: 1.45;
  max-width: 34rem;
}

@media (max-width: 991px) {
  .home-calculator__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-calculator__left {
    padding: 0.95rem;
  }
}

@media (max-width: 640px) {
  .home-calculator-form__row,
  .home-calculator-tabs {
    grid-template-columns: 1fr;
  }
}

.home-shops {
  margin-top: 2.8rem;
}

.home-shops__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.home-shops__head h2 {
  margin: 0;
  color: #121318;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.2;
}

.home-shops__head p {
  margin: 0.55rem 0 0;
  color: #262b34;
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.2vw, 1.35rem);
  line-height: 1.45;
}

.home-shops__catalog-link {
  color: #1f2430;
  font-weight: 500;
  white-space: nowrap;
}

.home-shops-slider {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.home-shops-slider__arrow {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid #d8dde5;
  background: #fff;
  color: #4b5362;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-shops-slider__arrow:hover {
  background: #f7f9fc;
}

.home-shops-slider__viewport {
  overflow-x: auto;
  scrollbar-width: none;
}

.home-shops-slider__viewport::-webkit-scrollbar {
  display: none;
}

.home-shops-slider__track {
  display: flex;
  gap: 0.9rem;
}

.home-shop-card {
  min-width: 12.2rem;
}

.home-shop-card__logo {
  height: 7.2rem;
  border-radius: 0.85rem;
  border: 1px solid #e4e9f0;
  background: linear-gradient(140deg, #dce9e5 0%, #cfe1dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111318;
  font-size: 2rem;
  font-weight: 600;
}

.home-shop-card:nth-child(2) .home-shop-card__logo {
  background: linear-gradient(140deg, #dbe6f1 0%, #cbd9e8 100%);
}

.home-shop-card:nth-child(3) .home-shop-card__logo {
  background: linear-gradient(140deg, #dddaf3 0%, #cfcbeb 100%);
}

.home-shop-card:nth-child(4) .home-shop-card__logo {
  background: linear-gradient(140deg, #eee4c8 0%, #e3d8b8 100%);
}

.home-shop-card:nth-child(5) .home-shop-card__logo {
  background: linear-gradient(140deg, #d8ece6 0%, #cae0d9 100%);
  font-size: 1.3rem;
  text-align: center;
  padding-inline: 0.8rem;
  line-height: 1.2;
}

.home-shop-card span {
  margin-top: 0.45rem;
  display: block;
  color: #232831;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .home-shops__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .home-shops-slider {
    grid-template-columns: 1fr;
  }

  .home-shops-slider__arrow {
    display: none;
  }

  .home-shop-card {
    min-width: 10.75rem;
  }

  .home-shop-card__logo {
    height: 6.25rem;
    font-size: 1.65rem;
  }
}

.home-news {
  margin-top: 2.7rem;
}

.home-news__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.home-news__head h2 {
  margin: 0;
  color: #121318;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.2;
}

.home-news__all-link {
  color: #1f2430;
  font-weight: 500;
  white-space: nowrap;
}

.home-news-slider {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.home-news-slider__arrow {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid #d8dde5;
  background: #fff;
  color: #4b5362;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-news-slider__arrow:hover {
  background: #f7f9fc;
}

.home-news-slider__viewport {
  overflow-x: auto;
  scrollbar-width: none;
}

.home-news-slider__viewport::-webkit-scrollbar {
  display: none;
}

.home-news-slider__track {
  display: flex;
  gap: 1.05rem;
}

.home-news-card {
  min-width: 20.5rem;
}

.home-news-card__image {
  height: 11.6rem;
  border-radius: 0.9rem;
  border: 1px solid #e4e8f0;
}

.home-news-card__image--first {
  background: linear-gradient(140deg, #dce8f3 0%, #cadcee 55%, #e2edf7 100%);
}

.home-news-card__image--second {
  background: linear-gradient(140deg, #d9efd8 0%, #c7e5c5 55%, #e5f4e4 100%);
}

.home-news-card__image--third {
  background: linear-gradient(140deg, #d9e8f2 0%, #cce0ed 55%, #e7f1f7 100%);
}

.home-news-card h3 {
  margin: 0.7rem 0 0;
  color: #171a21;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 991px) {
  .home-news-card {
    min-width: 18.5rem;
  }
}

@media (max-width: 640px) {
  .home-news-slider {
    grid-template-columns: 1fr;
  }

  .home-news-slider__arrow {
    display: none;
  }

  .home-news-card {
    min-width: 16.5rem;
  }
}
