

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

i {
  font-style: normal;
}
 
html, body {
    width: 100%;
    overflow-x: hidden; 
}

html {
    scroll-behavior: smooth;
}
 
body {
  font-family: "Inter", sans-serif;
}

body.overflow-hidden { 
  overflow: hidden;
} 

:root {
  --container-max-width: 2300px;
  --container-padding: 80px;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
 
@media (min-width: 1600px) {
  :root { 
    --container-padding: 70px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 12px;
  }
}

@media (max-width: 1600px) {
  .container {
    padding: 0 120px;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* MODAL */
.images-modal,
.city-modal,
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.images-modal.show,
.city-modal.show,
.modal.show {
  opacity: 1;
  visibility: visible;
} 

.city-modal .city-modal__content,
.modal .modal-content {
  width: 618px;
  background: #fff;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.city-modal .city-modal__content,
.modal .modal-content {
  transform: scale(1);
}

.sber-column-modal__content {
  max-width: 720px;
  width: min(720px, 90vw);
}

.sber-column-modal__content .modal-image {
  margin: 12px 0 20px;
  text-align: center;
}

.sber-column-modal__content img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sber-column-modal__content h4 {
  color: #E05834;
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 8px;
}

.sber-column-modal__content p,
.sber-column-modal__content ul {
  color: #272727;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sber-column-modal__content ul {
  padding-left: 20px; 
  list-style: disc;
}

.sber-column-modal__content ul li + li {
  margin-top: 6px;
}

.sber-column-modal__cities {
  margin-top: 8px;
  color: #555759;
  font-size: 14px;
  line-height: 1.5;
}

.sber-column-modal__link {
  display: inline-flex; 
  align-items: center;
  gap: 6px;
  color: #E05834;
  font-weight: 600;
  text-decoration: underline;
}

.city-modal .city-modal__content h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

/* .city-modal .city-modal__content ul {
  padding-left: 25px;
} */

.city-modal .city-modal__content li.region-item {
  color: #3d3d3d;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 20px; /* расстояние между li */
    line-height: 16px;   /* межстрочный интервал внутри текста li */
}

.city-modal .city-modal__content li.top-city-item {
  color: #3d3d3d;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 12px; /* расстояние между li */
    line-height: 12px;   /* межстрочный интервал внутри текста li */
}


.city-modal .city-modal__content li:hover {
  color: #E05834;
}

.city-modal .city-modal__content-close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  position: absolute;
  top: 60px;
  right: 60px;
  cursor: pointer;
}

.city-modal .city-modal__content-close-btn svg path {
  transition: fill 0.3s ease;
}

.city-modal .city-modal__content-close-btn:hover svg path {
  transition: fill 0.3s ease;
  fill: #a93c20;
}

.city-modal .city-modal__content-close-btn:hover svg rect {
  transition: stroke 0.3s ease;
}

.city-modal .city-modal__content-close-btn:hover svg rect {
  stroke: #a93c20;
}

.images-modal .images-modal__modal-content {
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.images-modal .images-modal__modal-content img {
  width: 425px;
  height: 700px;
  object-fit: contain;
}

.images-modal.show .images-modal__modal-content {
  transform: scale(1);
}

.images-modal .images-modal__close-btn {
  position: absolute;
  top: 0;
  right: -60px;
  cursor: pointer;
}

.modal .modal-close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.modal .modal-close-btn-text {
  position: absolute;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  color: #555759;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.28px;
  text-decoration: underline;
  user-select: none;
}

.modal .modal-content h3 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.modal .modal-content h3 + p,
.modal .modal-content h3 + .modal-content-text {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 34px;
}

.modal-content-text p,
.modal-content-text ul {
  margin-bottom: 16px;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}

.modal-content-text ul {
  padding-left: 20px;
  list-style: disc; 
}
 
.modal-content-text ul li + li {
  margin-top: 6px;
}

.tech-check {
  border-radius: 16px;
  border: 1px solid rgba(224, 88, 52, 0.2);
  background: #fff8f5;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.tech-check__status {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-check__emoji {
  font-size: 32px;
}

.tech-check__label {
  color: #E05834;
  font-weight: 600;
  font-size: 18px;
}

.tech-check__address {
  color: #272727;
  font-size: 16px;
}

.tech-check__technology {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
}

.tech-check__hint {
  color: #555759;
  font-size: 15px;
}

.tech-check__button {
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  background: #E05834;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tech-check__button:hover {
  background: #a93c20;
}

@media (max-width: 480px) {
  .tech-check {
    padding: 16px;
    gap: 10px;
  }

  .tech-check__status {
    gap: 10px;
    align-items: flex-start;
  }

  .tech-check__label {
    font-size: 16px;
  }

  .tech-check__address {
    font-size: 14px;
  }

  .tech-check__technology {
    flex-direction: column;
    font-size: 14px;
  }

  .tech-check__hint {
    font-size: 14px;
  }

  .tech-check__button {
    width: 100%;
    justify-content: center;
  }
}

.modal .modal-content form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.modal .modal-content label {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.modal .modal-content label span {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal .modal-content label span b {
  color: #f03737;
}

.modal .modal-content label input,
.modal .modal-content textarea {
  display: flex;
  height: 45px;
  padding: 14px;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid rgba(43, 43, 43, 0.4);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.04), 0px 4px 16px 0px rgba(51, 51, 51, 0.08);
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
  max-width: 480px;
}

.modal .modal-content textarea {
  max-width: 600px;
  height: 100px;
  width: 100%;
}

.modal .modal-content label input.city {
  max-width: 408px;
  width: 100%;
}

.modal .modal-content button {
  border-radius: 7px;
  background: #E05834;
  display: flex;
  width: 222px;
  height: 45px;
  padding: 14px 30px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #f4f4f4;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: none;
  cursor: pointer;
}

.modal .modal-content button:hover {
  background: #a93c20;
}

.modal .modal__accordion {
  width: 100%;
  overflow: hidden;
}

.modal .modal__accordion-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  /* width: max-content; */
}

.modal .modal__accordion-trigger span {
  color: #202020;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.modal .modal__accordion-trigger svg {
  min-width: 16px;
  transition: transform 0.3s ease;
}

.modal .modal__accordion-trigger svg.active {
  transform: rotate(-180deg);
}

.modal .modal__accordion-content {
  width: 100%;
  margin-top: 20px;
  height: 128px;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-height: 200px; /* content height */
  pointer-events: all;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.5s ease;
  pointer-events: none;
  height: 0;
  flex-wrap: wrap;
  gap: 50px;
}

@media (max-width: 480px) {
    .modal .modal__accordion-content {
        margin-top: 0;
    }

    .modal .modal__accordion-content.active textarea{
        margin-top: 20px;
      }

}

.modal .modal__accordion-content.active {
  opacity: 1;
  pointer-events: all;
  height: 100%;
} 

/* HEADER SECTION */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  transition: top 0.3s, box-shadow 0.3s;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.header .header__top {
  background: #f9f9f9;
  height: 40px;
} 

.header .header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  height: 100%;
  position: relative;
}
 
.header .header__top-tel .header__top-tel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3d3d3d;
  font-family: Inter;
  font-size: var(--Header-Line-font-Size-small, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header .header__top-tel .header__top-tel-link--tooltip {
  position: relative;
}

.header .header__top-tel .header__top-tel-link--tooltip-text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(calc(100% + 10px), -50%);
  background-color: black;
  color: #fff;
  white-space: nowrap;
  padding: 5px;
  border-radius: 5px;
  font-size: 13px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  cursor: default;
}

.header .header__top-tel .header__top-tel-link--tooltip-text:before {
  content: "";
  position: absolute;
  background-color: #000;
  width: 10px;
  height: 10px;
  left: -4px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%) rotate(45deg);
}

.header .header__top-tel .header__top-tel-link--tooltip:hover .header__top-tel-link--tooltip-text {
  visibility: visible;
  opacity: 1;
}

.header .header__top-tel .header__top-tel-link svg path {
  transition: fill 0.3s ease;
}

.header .header__top-tel .header__top-tel-link:hover {
  color: #E05834;
}

.header .header__top-tel .header__top-tel-link:hover svg path {
  fill: #E05834;
}

.header .header__top-links {
  display: flex;
  align-items: center;
  gap: 39px;
}

.header .header__top-links .header__top-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #3d3d3d;
  font-family: Inter;
  font-size: var(--Header-Line-font-Size-small, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.header .header__top-links .header__top-link svg path {
  transition: fill 0.3s ease;
}

.header .header__top-links .header__top-link:hover {
  color: #E05834;
}

.header .header__top-links .header__top-link img:hover {
  color: #E05834;
}

.header .header__top-links .header__top-link:hover svg path {
  fill: #E05834;
} 

.header .header__top-links .header__top-link--location {
  gap: 0;
  display: inline-flex;
  align-items: center;
} 

.header__city-link {
  background: transparent;
  border: none;
  color: inherit;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
 
.header__city-hint {
  position: fixed;
  top: 124px;
  left: calc((100vw - min(100vw, var(--container-max-width)))/2 + var(--container-padding));
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(23, 17, 41, 0.18);
  font-size: 14px;
  color: #3c3c3c;
  z-index: 20;
  border: 1px solid rgba(105, 0, 175, 0.12);
  max-width: min(360px, calc(min(100vw, var(--container-max-width)) - var(--container-padding) * 2));
  width: 100%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__city-hint-text p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.header__city-hint-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.header__city-hint-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header__city-hint-yes {
  background: #6900af;
  color: #fff;
  box-shadow: 0 10px 25px rgba(105, 0, 175, 0.25);
}

.header__city-hint-yes:hover {
  background: #53008c;
}

.header__city-hint-no {
  background: transparent;
  border: 1px solid rgba(105, 0, 175, 0.4);
  color: #6900af;
}

.header__city-hint-no:hover {
  background: rgba(105, 0, 175, 0.08);
}

.header__city-hint-close {
  border: none;
  background: rgba(105, 0, 175, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  position: absolute;
  top: 8px;
  right: 8px;
}

.header__city-hint-close:hover {
  background: rgba(105, 0, 175, 0.18);
}

@media (max-width: 1200px) {
.header__city-hint {
  left: calc((100vw - min(100vw, var(--container-max-width)))/2 + var(--container-padding));
  }
}

@media (max-width: 768px) {
  .header__city-hint {
    top: 83px;
    left: calc((100vw - min(100vw, var(--container-max-width)))/2 + var(--container-padding));
    max-width: 320px;
    width: 100%;
  }

  .header__city-hint-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.header .header__bottom {
  height: 72px;
  background: #fff;
}

.header .header__bottom .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header__bottom-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header .header__bottom-link {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header .header__bottom-link:hover {
  color: #E05834;
}

.header .header__dropdown {
  position: relative;
}

.header .header__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.header .header__dropdown-trigger svg,
.header .header__dropdown-trigger svg path {
  transition: all 0.3s ease;
}

.header .header__dropdown-trigger svg.active {
  transform: rotate(-180deg);
}

.header .header__dropdown-trigger:hover span {
  color: #E05834;
}

.header .header__dropdown-trigger:hover svg path {
  fill: #E05834;
}

.header .header__dropdown-content {
    position: absolute;
    border-radius: 5px;
    top: 100%;
    background-color: #fff;
    width: 100%;
    padding: 15px 5px 15px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 10px;
}

.header .header__dropdown:hover .header__dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header .header__dropdown-content li a {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.32px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header .header__dropdown-content li a:hover {
  color: #E05834;
}

.header__dropdown-content ul li { 
  margin-bottom: 10px; 
}

.header .header__bottom-connect {
  color: #f4f4f4;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  padding: 11px 52px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #E05834;
  transition: background 0.3s ease;
}

.header .header__bottom-connect:hover {
  background: #a93c20;
}

.header .header__bottom-menu {
  display: none;
}

.header .header__bottom-menu-overlay {
  display: none;
  z-index: 100;
}

/* BREADCRUMB */
.breadcrumb {
  margin-top: 112px;
  padding: 8px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb .container a,  .breadcrumb .container span{
  color: #808080;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
}

/* HERO SECTION */
.hero {
  padding: 60px 0;
  padding-top: 168px;
  /* margin-top: 112px; */
  /* background: url(./assets/images/hero-bg.webp) 50% / cover no-repeat, #fff; */
  background-blend-mode: darken, normal;
}

.hero.private-home {
  background: url(./assets/images/hero-bg-private-home.webp) 50% / cover no-repeat, #fff;
}
 
.hero.business {
  background: url(./assets/images/hero-img-business.png) 50% / cover no-repeat, #fff;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.hero .hero__left {
  max-width: 544px;
  padding: 32px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}

.hero .hero__left h1 {
  color: #000;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  margin-bottom: 35px;
}

.hero .hero__left h1 span {
  position: relative;
  color: #E05834;
}

.hero .hero__left h1 span img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.hero .hero__internet {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-direction: column;
    min-width: 400px;
}

.hero .hero__internet-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero .hero__internet-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero .hero__internet-item span {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
}

.hero .hero__internet-action a {
  display: flex;
  width: 207px;
  padding: 16px 53px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #ffca0e;
  color: black;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: background 0.3s ease;
}

.hero .hero__internet-action a:hover {
  background: hsl(47, 100%, 50%);
}

.hero .hero__right img {
  min-width: 351px;
  /* max-width: 488px; */
  width: 100%;
  height: auto;
  object-fit: cover;
} 

/* FIXED LINKS */
/*
 .fixed-links {
  display: none;
}
*/

/*
.fixed-links-2 {
  display: flex;
  opacity: 1;
  transition: 0.3s;
  flex-direction: column;
  position: fixed;
  bottom: 20px;
  right: 20px;
  gap: 12px;
  z-index: 101;
} */

/* TARIF SECTION */
.tarif {
  margin: 30px 0;
}

.tarif .tarif__content {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 32px;
  gap: 30px;
}

.tarif .tarif__content .tarif__right img {
  max-width: 475px;
  max-height: 422px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tarif .tarif__content h1 {
  color: #E05834;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 28px;
}

.tarif .tarif__content h1 span {
  position: relative;
}

.tarif .tarif__content h1 span.colored {
    color: #6900af;
}

.tarif .tarif__content h1 span img {
  position: absolute;
  left: 10px;
  bottom: -10px;
}

.tarif .tarif__content p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

.tarif .tarif__left {
  width: 50%;
}

.tarif .tarif__content .tarif__left-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tarif .tarif__content .tarif__left-item p {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.tarif .tarif__content .tarif__left-item p span {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
}

.tarif .tarif__content .tarif__left-item span {
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tarif .tarif__left-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tarif .tarif__left-bottom .price-month {
  color: #E05834;
  font-family: Inter;
  font-size: 38.438px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.tarif .tarif__left-bottom .price-month b {
  color: #808080;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.tarif .tarif__left-bottom .price-month b::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #808080;
  top: 50%;
  left: -3px;
  transform: rotate(160deg) translateY(50%);
}

.tarif .tarif__left-bottom .price-month span {
  font-size: 16px;
}

.tarif .tarif__left-bottom span {
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.tarif .tarif__left-bottom a {
  color: #f4f4f4;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  padding: 11px 52px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #E05834;
  transition: all 0.3s ease;
}

.tarif .tarif__left-bottom a:hover {
  background: #a93c20;
}

/* INCLUDED IN SECTION */
.included-in {
  padding: 30px 0;
}

.included-in h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.included-in .included-in__item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  margin-bottom: 20px;
}

.included-in .included-in__item h3 {
  color: #E05834;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; 
  letter-spacing: 0.57px;
}

.included-in .included-in__item-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
} 

.included-in .included-in__item-row .dotted {
  width: 100%;
  border-bottom: 1px dotted #808080;
}

.included-in .sber-column-modal-trigger {
  border: 1px solid #6900af;
  background: rgba(105, 0, 175, 0.08);
  color: #6900af;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center; 
  gap: 8px;
}

.included-in .sber-column-modal-trigger:hover {
  background: #6900af;
  color: #fff;
  box-shadow: 0 8px 18px rgba(105, 0, 175, 0.2);
  transform: translateY(-1px);
}

.included-in .included-in__item--sberboom {
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #fff, #f8f0ff);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.included-in .included-in__item--sberboom .sberboom__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.included-in .included-in__item--sberboom .sberboom__price {
  max-width: 360px;
}

.included-in .included-in__item--sberboom .sber-column-modal-trigger {
  margin-top: 8px;
}

.included-in .sber-column-card-image {
  text-align: center;
}

.included-in .sber-column-card-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  background: #fff;
  padding: 20px;
}

@media (max-width: 768px) {
  .included-in .included-in__item--sberboom {
    flex-direction: column;
    align-items: flex-start;
  }

  .included-in .included-in__item--sberboom .sberboom__info {
    align-items: flex-start;
  }

  .included-in .included-in__item--sberboom .sber-column-modal-trigger {
    width: 100%;
    justify-content: center;
  }

  .included-in .sber-column-card-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.included-in .included-in__item-row p,
.included-in .included-in__item-row span {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* white-space: nowrap; */
    width: -webkit-fill-available;
}

.included-in .included-in__accordion {
  width: 100%;
  overflow: hidden;
}

.included-in .included-in__accordion-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: max-content;
}

.included-in .included-in__accordion-trigger span {
  color: #202020;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.included-in .included-in__accordion-trigger svg {
  min-width: 16px;
  transition: transform 0.3s ease;
}

.included-in .included-in__accordion-trigger svg.active {
  transform: rotate(-180deg);
}

.included-in .included-in__accordion-content {
  width: 100%;
  margin-top: 20px;
  height: 128px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-height: 200px; /* content height */
  pointer-events: all;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.5s ease;
  pointer-events: none;
  height: 0;
  flex-wrap: wrap;
  gap: 50px;
}

.included-in .included-in__accordion-content.active {
  opacity: 1;
  pointer-events: all;
  height: 100%;
}

.included-in .included-in__accordion-content::-webkit-scrollbar {
  width: 9px;
}

.included-in .included-in__accordion-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
  border: 1px solid #808080;
}

.included-in .included-in__accordion-content::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #808080;
}

.included-in .included-in__accordion-content::-webkit-scrollbar-thumb:hover {
  background: darkgray;
}

.included-in .included-in_first-text {
  white-space: normal !important;
}

.included-in .fttb {
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-in .included-in-fttb--tooltip {
  position: relative;
  display: flex;
  align-items: center;
}

.included-in .included-in-fttb--tooltip-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(calc(-100% - 10px), -50%);
  background-color: black;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 13px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  cursor: default;
  opacity: 0;
  visibility: hidden;
  white-space: normal;
  width: 150px;
}

.included-in .included-in-fttb--tooltip-text.active {
  opacity: 1;
  visibility: visible;
}

.included-in .included-in-fttb--tooltip img {
  width: 16px;
  height: 16px;
}

.included-in .included-in-fttb--tooltip-text:before {
  content: "";
  position: absolute;
  background-color: #000;
  width: 10px;
  height: 10px;
  right: -4px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%) rotate(45deg);
}

/* CONNECTION COST */
.connection-cost {
  padding: 30px 0;
}

.connection-cost h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.connection-cost .connection-cost__card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
}

.connection-cost .connection-cost__card p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.connection-cost .connection-cost__card b {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.57px;
  margin: 20px 0 8px 0;
}

.connection-cost .connection-cost__card span {
  color: #909090;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.additionally {
  padding: 30px 0;
}

.additionally h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.additionally .additionally__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.additionally .additionally__card {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.additionally .additionally__card-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
}

.additionally .additionally__card-left h3 {
  color: #E05834;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.additionally .additionally__card-left p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.additionally .additionally__card-left p a {
  color: #000;
  text-decoration: underline;
}

.additionally .additionally__card-left .radios {
  margin: 0;
}

.additionally .additionally__card-left .radios span {
  font-size: 16px;
}

.additionally .additionally__card-right img {
  width: 330px;
  height: 249px;
  object-fit: cover;
}

.additionally .additionally_card-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

.additionally .additionally_card-price b {
  color: #000;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.57px;
}

.additionally .additionally_card-price b span {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.additionally .additionally_card-price .checkbox input {
  width: 50px;
  height: 25px;
}

.additionally .additionally_card-price .checkbox input:before {
  width: 21px;
  height: 21px;
  left: 3px;
}

.additionally .additionally_card-price .checkbox input:checked::before {
  left: 26px;
}

.additionally .additionally__card-bottom p {
  margin-top: 8px;
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.additionally .additionally__card-control-view {
  display: flex;
  align-items: center;
  gap: 60px;
}

.additionally .additionally__card-control-view .control-view {
  display: flex;
  align-items: center;
  gap: 8px;
}

.additionally .additionally__card-left--last {
  width: 100%;
}

/* REQUEST SECTION */
.request {
  padding: 30px 0;
}

.request h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.request .request__card {
  display: flex;
  padding: 40px 60px;
  gap: 60px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}

.request .request__card h3 {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.request .request__speed-info {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.request .request__speed-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.request .request__speed-info-item .mbs {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: -5px;
}

.request .request__speed-info-item .mbs span {
  font-size: 30px;
}

.request .request__speed-info-item .text {
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.request .request__prize {
  /* width: 290px; */
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.request .price-month {
  color: #E05834;
  font-family: Inter;
  font-size: 38.438px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.request .price-month b {
  color: #808080;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.request .price-month b::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #808080;
  top: 50%;
  left: -3px;
  transform: rotate(160deg) translateY(50%);
}

.request .price-month span {
  font-size: 16px;
}

.request .request__right {
  border-left: 1px solid rgba(128, 128, 128, 0.4);
  padding-left: 60px;
}

.request .request__right h3 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.request .request__right h3 + p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 34px;
}

.request .request__right {
  width: 100%;
}

.request .request__right form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.request .request__right label {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.request .request__right label span {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.request .request__right label span b {
  color: #f03737;
}

.request .request__right label input,
.request .request__right textarea {
  display: flex;
  height: 45px;
  /* padding: 14.694px 183.784px 14.693px 13.514px; */
  padding: 14px;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid rgba(43, 43, 43, 0.4);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.04), 0px 4px 16px 0px rgba(51, 51, 51, 0.08);
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
  max-width: 300px;
}

.request .request__right textarea {
  max-width: 600px;
  height: 100px;
}

.request .request__right label input.city {
  max-width: 408px;
  width: 100%;
}

.request .request__right button {
  border-radius: 7px;
  background: #E05834;
  display: flex;
  width: 222px;
  height: 45px;
  padding: 14px 30px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #f4f4f4;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: none;
  cursor: pointer;
}

.request .request__right button:hover {
  background: #a93c20;
}

.request .request__accordion {
  width: 100%;
  overflow: hidden;
}

.request .request__accordion-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: max-content;
}

.request .request__accordion-trigger span {
  color: #202020;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.request .request__accordion-trigger svg {
  min-width: 16px;
  transition: transform 0.3s ease;
}

.request .request__accordion-trigger svg.active {
  transform: rotate(-180deg);
}

.request .request__accordion-content {
  width: 100%;
  margin-top: 20px;
  height: 128px;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-height: 200px; /* content height */
  pointer-events: all;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.5s ease;
  pointer-events: none;
  height: 0;
  flex-wrap: wrap;
  gap: 50px;
}

.request .request__accordion-content.active {
  opacity: 1;
  pointer-events: all;
  height: 100%;
}

.checkbox-v2 {
  display: flex;
  align-items: center;
  gap: 20px !important;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  flex-direction: row !important;
}

.checkbox-v2 p {
  color: #555759;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.28px;
  user-select: none;
}

.checkbox-v2 input[type="checkbox"] {
  display: none !important;
} 

.checkbox-v2 span {
  min-width: 24px;
  min-height: 24px;
  border: 1px solid #E05834;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-v2 span svg {
  display: none;
  width: 16px;
  height: 16px;
}

.checkbox-v2 input[type="checkbox"]:checked + span {
  border-color: #555759;
  background-color: #e8f5e9;
}

.checkbox-v2 input[type="checkbox"]:checked + span svg {
  display: block;
}

.price-popup {
  position: fixed;
  display: flex;
  max-width: 900px;
  width: 100%;
  height: 80px;
  padding: 20px 40px;
  align-items: center;
  border-radius: 20px 20px 0px 0px;
  background: #fff;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.25);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 103;
}

.price-popup .price-popup__col--mobile {
  display: none;
}

.price-popup .price-popup__col h4 {
  color: #E05834;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.price-popup .price-popup__col span {
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.price-popup .price-popup__action {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 400px;
}

.price-popup .price-popup__action a {
  color: #f4f4f4;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border-radius: 7px;
  background: #E05834;
  display: flex;
  width: 180px;
  height: 40px;
  padding: 20px 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.price-popup .price-popup__action a:hover {
  background: #a93c20;
}

/* COMMON BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary {
  background: #E05834;
  color: #fff;
}

.btn-primary:hover {
  background: #a93c20;
  color: #fff;
}

/* PAYMENT SECTION */
.payment h1 {
    margin: 60px 0;
    color: #E05834;
    font-size: 48px;
}

@media (max-width: 769px) {
    .payment h1 {
        font-size: 32px;
    }
}

.payment h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.57px;
  margin-top: 68px;
  margin-bottom: 20px;
}

.payment .payment__way {
  margin-bottom: 60px;
}

.payment .payment__way h3 {
  color: #E05834;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.57px;
  margin-bottom: 8px;
}

.payment .payment__way ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.payment .payment__way ul li {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.57px;
}

.payment .payment__way ul li a {
  color: #E05834;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.57px;
  text-decoration: underline;
}

.payment .swiper {
  max-width: 644px;
  width: 100%;
  margin: 0;
}

.payment .swiper img {
  width: 182px;
  height: 299px;
  object-fit: cover;
  cursor: pointer;
}

.payment .payment__swiper-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.payment .payment__swiper-pagination .swiper-pagination-bullet {
  width: 12px; 
  height: 12px;
  opacity: 0.2;
  background: #dbdbdb;
}

.payment .payment__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E05834;
  opacity: 1;
}

/* CATEGORY PAGES */
.category-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, #fff, #fff8f5);
  margin-bottom: 20px;
}

.category-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.category-hero__content h1 {
  color: #E05834;
  font-size: 40px;
  font-weight: 600;
}

.category-hero__content p {
  color: #272727;
  font-size: 18px;
  line-height: 1.6;
}

.category-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 32px;
  border-radius: 8px;
  background: #E05834;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.category-hero__button:hover {
  background: #a93c20;
}

/* SBERBOX PAGE */
.sberbox {
  padding: 60px 0;
}

.sberbox h1 {
  color: #E05834;
  font-size: 40px;
  margin-bottom: 16px;
}

.sberbox p {
  color: #272727;
  font-size: 16px;
  line-height: 1.6;
}

.sberbox__hero {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sberbox__hero-text {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sberbox__hero-image {
  flex: 0 0 340px;
  max-width: 420px;
}

.sberbox__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
} 

.sberbox__note {
  background: #fff4ef;
  border-left: 4px solid #E05834;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.sberbox__note--divider {
  margin-top: 20px;
  margin-bottom: 24px;
}

.sberbox__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  padding: 32px;
  margin-bottom: 32px;
}

.sberbox__inline-image {
  margin-bottom: 20px;
  text-align: center;
}

.sberbox__inline-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sberbox__card h2 {
  color: #E05834;
  font-size: 28px;
  margin-bottom: 16px;
}

.sberbox__card h3 {
  color: #E05834;
  font-size: 22px;
  margin: 0 0 16px;
}

.sberbox__card ul {
  padding-left: 20px;
  display: flex; 
  flex-direction: column;
  gap: 10px;
}

.sberbox__card li {
  color: #272727;
  font-size: 16px;
  line-height: 1.6;
}

.sberbox__button {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  background: #E05834;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sberbox__button:hover {
  background: #a93c20;
}

.sberbox__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .sberbox__hero {
    flex-direction: column;
  }

  .sberbox__hero-image {
    width: 100%;
    max-width: none;
  }

  .sberbox__card {
    padding: 24px;
  }
}

/* INTERNET SECTION */
.internet {
  padding: 60px 0;
}

.internet.tv {
  background: #f9f9f9;
}

.internet h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.internet h2 + p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 8px 0 20px 0;
}

.internet .internet__swiper-tab {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 22px;
  overflow-x: auto;
}

.internet .internet__swiper-tab::-webkit-scrollbar {
  display: none;
}

.internet .internet__swiper-tab button {
  background: transparent;
  border: none;
  display: flex;
  padding: 0 20px 12px 20px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.internet .internet__swiper-tab button span {
  color: #E05834;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.internet .internet__swiper-tab .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #E05834;
  transition: all 0.3s ease;
}

.internet .internet__swiper-container {
  position: relative;
}

.internet.no-js .swiper-wrapper {
  display: flex;
  gap: 24px;
}



.internet .internet__swiper-container .internet__swiper-button-next,
.internet .internet__swiper-container .internet__swiper-button-prev {
  display: flex;
  width: 50px;
  height: 51.198px;
  padding: 14px 12px 13.198px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 0.266px 10px 0px rgba(153, 152, 168, 0.5);
  cursor: pointer;
  user-select: none;
  position: absolute;
  z-index: 10;
}

.internet .internet__swiper-container .internet__swiper-button--hidden {
  display: none;
}

.internet .internet__swiper-container .internet__swiper-button-prev {
  left: -64px;
  top: 50%;
  transform: translateY(-50%);
}

.internet .internet__swiper-container .internet__swiper-button-next {
  right: -64px;
  top: 50%;
  transform: translateY(-50%);
}

.internet .internet__swiper form {
  padding: 20px;
}


.internet__slide-wrapper {
    position: relative; /* обязательно */
    margin-right: 20px;
    background: inherit;
    display: flex;
    flex-direction: column;
    /* height: -webkit-fill-available; */
    z-index: 1; /* чтобы псевдоэлемент уходил под контент */
    border-radius: 5px;
    height: 100%;
}

@media (max-width: 374px) {
    .internet__slide-wrapper {
        margin-right: 12px;
    }
}

.internet__slide-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    /* «сжимаем» псевдоэлемент внутрь, чтобы тень легла ближе к краям */
    /* Например, отступ по 4px внутрь: */
    margin: 4px;
  
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px; /* чтобы повторял форму родителя */
    pointer-events: none; /* чтобы псевдоэлемент не мешал кликам */
    z-index: 0;
  }
  
  /* Если не хотим, чтобы у последнего слайда 
     был "лишний" отступ справа: */
  .swiper-slide:last-child .internet__slide-wrapper {
    margin-right: 0;
  }

.internet .swiper-wrapper {
  transition: all 0.5s ease;
  min-height: 440px;
}

.internet.tv .swiper-wrapper {
    transition: all 0.5s ease;
    min-height: 620px;
  }
  

.internet.no-js .swiper-slide {
    width: 300px;
    /* min-height: 500px; */
}
.internet.tv.no-js .swiper-slide {
    width: 300px;
    /* min-height: 620px; */
}

.internet .swiper-slide {
  border-radius: 5px;
  overflow: hidden;
  background: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 324px;
  box-sizing: border-box;
  
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
      /* transition: all 0.5s ease;
  transform: translateX(0%); */
    /* min-height: 561px; */
}

.internet#tv .swiper-wrapper {
  min-height: auto !important;
}
.internet#tv {
  background: white;
}

@media (max-width: 1024px) {
    /* .internet__swiper.swiper-backface-hidden {
        overflow: visible;
      } */
}

.internet .swiper-slide.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}

.internet .swiper-slide.display-hidden {
  display: none;
}

.internet .swiper-slide form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}

.internet .internet__slide-header {
  display: flex;
  padding: 20px 20px 12px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  /* background: linear-gradient(90deg, #EB8B2C 0%, #D93E38 100%); */

  display: block;
  width: calc(100% - 8px);
  margin: 0 auto;
  border-radius: 5px 5px 0 0;
  position: relative;  
  
  z-index: 1;

}



/* Контент */
.internet__slide-header > * {
    position: relative;
    z-index: 3; /* контент выше тени */
  }
  
  /* Псевдоэлемент с тенью */
  .internet__slide-header::before {
    content: "";
    position: absolute;
    inset: 0;
  
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px 5px 0 0;
    clip-path: inset(0 0 8px 0);
  
    z-index: 2; /* выше фона, но ниже текста */
    pointer-events: none; /* чтобы не мешал кликам */
  }




.internet .internet__slide-header h4 {
  color: #272727;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.internet .internet__slide-header span {
  color: #272727;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.internet .internet__speed-info {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  gap: 20px;
} 

.internet .internet__speed-info .badge {
  position: absolute;
  right: 10px;
  top: -10px;
  cursor: pointer; 
}

.internet .internet__speed-info .badge img {
  width: 70px;
  height: 53px;
  object-fit: cover;
}

.internet .internet__speed-info .badge + .badge {
  top: 50px;
}

.internet .internet__speed-info .badge--sber img {
  width: 64px;
  height: auto;
}

.internet .internet__speed-info-item {
  display: flex;
  gap: 20px;
}

.internet .internet__speed-info-item div {
  display: flex;
  flex-direction: column;
}

.internet .internet__speed-info-item div .mbs {
  color: #E05834;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: -7px;
}

.internet .internet__speed-info-item div .mbs span {
  color: #E05834;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.internet .internet__speed-info-item div .text {
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.internet__additional_options {
    margin-top: 16px;
    padding-bottom: 12px;
}


.internet .internet__rent {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  padding: 12px 0;
  /* border-bottom: 1px solid #dddddd;
  margin-bottom: 20px; */
}

.internet .internet__rent.wifi {
  border-bottom: none;
  margin-bottom: 0px;
}

.internet .internet__rent img {
  display: block;
  width: 24px;
} 

.internet .internet__rent-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.internet .internet__rent-header b {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.internet .internet__rent-header span {
  color: #808080;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.internet .internet__rent-header .checkbox {
  margin-left: auto;
}

.checkbox input {
  width: 35px;
  height: 18px;
  position: relative;
  appearance: none;
  background: #808080;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) inset;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.2));
  outline: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox input:checked {
  background: rgba(0, 238, 53, 1);
}

.checkbox input:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 100%;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.checkbox input:checked::before {
  left: 17px;
}

.radios {
  display: none;
  flex-direction: column;
  margin-top: 20px;
  gap: 12px;
}

.radios.active {
  display: flex;
}

.radios input {
  display: none;
}

.radios label {
  display: block;
  cursor: pointer;
}

.radios label span {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.radios label span:before {
  content: "";
  background: #fff;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-right: 16px;
  box-shadow: inset 0 0 0 1px #d2d5da;
}

.radios label input:checked + span:before {
  box-shadow: inset 0 0 0 5px #34c759;
}

.internet .internet__prize {
  margin-bottom: 8px;
  font-size: 12px;
}

.internet ul.internet__prize {
  padding-left: 20px;
  font-size: 12px;
}

.internet .internet__slide-footer {
  /* padding-top: 4px; */
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
  /* border-top: 1px solid #dddddd; */
  position: relative;
  cursor: pointer;
}


.internet .internet__slide-footer img {
  position: absolute;
  right: 0;
  top: 0;
  width: 83px;
  height: 42px;
  object-fit: cover;
  height: auto;
}

.internet .internet__slide-footer .price-month {
  color: #6900af;
  font-family: Inter;
  font-size: 38.438px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.internet .internet__slide-footer .price-month b {
  color: #808080;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.internet .internet__slide-footer .price-month b::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #808080;
  top: 50%;
  left: -3px;
  transform: rotate(160deg) translateY(50%);
}

.internet .internet__slide-footer .price-month span:not(.price-month__value) {
  font-size: 16px; 
}

.price-month__value { 
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
} 

.internet .internet__slide-footer span {
  /* color: #808080; */
  /* font-family: Inter; */
  /* font-size: 14px; */
  /* font-style: normal; */
  /* font-weight: 400; */
  /* line-height: normal; */
}

.internet .internet__slide-footer button {
  color: #6900af;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.3s ease;
  display: flex;
  padding: 11px 62px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  border: 2px solid #6900af;
  background: #fff;
  cursor: pointer;
}

.internet .internet__slide-footer button:hover {
  background: #6900af;
  color: #fff;
}

.internet .internet__slide-footer a {
  color: #808080;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.internet .internet__swiper-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.internet__swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.2;
  background: #dbdbdb;
}

.internet__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E05834;
  opacity: 1;
}

/* WIFI ROUTER SECTION */
.wifi-router {
  padding: 60px 0;
  background: linear-gradient(270deg, #FFA928 0%, rgba(44, 0, 73, 0.3) 100%);
}

.wifi-router .container {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.wifi-router .wifi-router__info {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  min-width: 548px;
  max-width: 548px;
}

.wifi-router .wifi-router__info h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

.wifi-router .wifi-router__info p,
.wifi-router .wifi-router__info li {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.wifi-router .wifi-router__info ul {
  padding-left: 25px;
}

.wifi-router .wifi-router__info li span {
  font-weight: 600;
}

.wifi-router .wifi-router__accordion {
  display: flex;
  flex-direction: column;
}

.wifi-router .wifi-router__accordion-trigger {
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  gap: 4px;
  margin-top: 8px;
  cursor: pointer;
  user-select: none;
  width: max-content;
}

.wifi-router .wifi-router__accordion-trigger span {
  color: #808080;
}

.wifi-router .wifi-router__accordion-trigger svg {
  transition: transform 0.3s ease;
}

.wifi-router .wifi-router__accordion-trigger svg.active {
  transform: rotate(-180deg);
}

.wifi-router .wifi-router__accordion-content {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  max-height: 0px;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  pointer-events: none;
}

.wifi-router .wifi-router__accordion-content.active {
  max-height: 200px; /* content height */
  opacity: 1;
  pointer-events: all;
}

.wifi-router .wifi-router__accordion-content ul b {
  display: block;
  margin: 10px 0;
}

.wifi-router .wifi-router__accordion-content li a:hover {
  color: #E05834;
}

.wifi-router .wifi-router__action {
  display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.wifi-router .wifi-router__action a {
  border-radius: 7px;
  background: #E05834;
  display: flex;
  width: 205.56px;
  height: 50px;
  padding: 16px 53.56px 17px 53px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.wifi-router .wifi-router__action a:hover {
  background: #a93c20;
}

.wifi-router .wifi-router__action .wifi-router__price {
  display: flex;
  flex-direction: column;
}

.wifi-router .wifi-router__action .wifi-router__price > span {
  color: #E05834;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.wifi-router .wifi-router__accordion-content li {
  color: #808080;
}

.wifi-router .wifi-router__accordion-content p {
  color: #808080;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
}

.wifi-router .wifi-router__img {
  max-width: 551px;
  width: 100%;
}

.wifi-router .wifi-router__img img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* APP TV BOX SECTION */
.app-tv-box {
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

.app-tv-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(./assets/images/app-tv-box-bg.png) 50% / cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.app-tv-box h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
 
.app-tv-box h2 + p {
  color: #000; 
  font-family: Inter;
  font-size: 16px;
  font-style: normal; 
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.57px;
  margin: 8px 0 28px 0;
}

.app-tv-box .app-tv-box__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.app-tv-box .app-tv-box__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 8px 26px 0px rgba(0, 0, 0, 0.14);
}

.app-tv-box .app-tv-box__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 230px;
  margin-bottom: 24px;
  overflow: hidden;
}

.app-tv-box .app-tv-box__card img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}  

.app-tv-box .app-tv-box__card img.app-tv-box__full-image {
  object-fit: contain;
}

.app-tv-box .app-tv-box__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.app-tv-box .app-tv-box__tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(224, 88, 52, 0.1);
  color: #E05834;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.app-tv-box .app-tv-box__card h3 {
  color: #E05834;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 8px 0;
}

.app-tv-box .app-tv-box__card ul {
  padding-left: 25px;
  margin: 8px 0 0;
}

.app-tv-box .app-tv-box__card p,
.app-tv-box .app-tv-box__card li {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
} 

.app-tv-box .app-tv-box__card p {
  margin: 0 0 8px;
}

.app-tv-box .app-tv-box__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.app-tv-box .app-tv-box__terms span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #f7f7f7;
  color: #272727;
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.app-tv-box .app-tv-box__terms--price span {
  background: rgba(224, 88, 52, 0.08);
}

.app-tv-box .app-tv-box__terms b {
  margin-left: 4px;
}

.app-tv-box .app-tv-box__card .app-tv-box__button {
  display: flex;
  padding: 16px 53px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  border: 2px solid #fff8f8;
  background: #E05834;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.app-tv-box .app-tv-box__card .app-tv-box__button:hover {
  background: #a93c20;
}

@media (max-width: 1180px) {
  .app-tv-box .app-tv-box__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.app-tv-box .app-tv-box__actions {
  margin-top: auto;
  padding-top: 24px;
}

.app-tv-box .app-tv-box__info-link {
  margin-top: 16px;
  width: 100%;  
  overflow-wrap: break-word;
  word-break: break-word;
}

.app-tv-box .app-tv-box__info-link a {
  color: #E05834; 
  font-weight: 500;
  text-decoration: underline;
  word-break: break-word;
  display: block;
  white-space: normal;
}

@media (max-width: 600px) {
  .app-tv-box .app-tv-box__info-link {
    text-align: center;
  }

  .app-tv-box .app-tv-box__info-link a {
    max-width: 100%;
  }
}

/* SEARCH LOCATION SECTION */
.search-location {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.search-location form svg {
  display: none;
}

.search-location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/src/assets/images/map.png) 50% / cover no-repeat;
  opacity: 0.6;
  z-index: -1;
}

.search-location h2 {
  color: #E05834;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  width: max-content;
  padding: 5px;
  border-radius: 3px;
}

.search-location form {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
} 

.search-location .search-location__input-wrapper {
  position: relative;
  width: 100%;
}

.search-location form input,
.search-location form textarea {
  border: none;
  padding: 12px 16px;
  min-height: 44px; 
  outline: none;
  border-radius: 10px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: box-shadow 0.3s ease;
  resize: none;
  overflow: hidden;
}

.search-location form input.active,
.search-location form textarea.active {
  border-radius: 10px 10px 0 0;
}

.search-location form input:focus,
.search-location form textarea:focus {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.7);
}

.search-location form input::placeholder,
.search-location form textarea::placeholder {
  color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.search-location form button {
  white-space: nowrap;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border-radius: 7px;
  background: #E05834;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  align-self: stretch;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}

.search-location form button:hover {
  background: #a93c20;
}

#suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  width: 100%;
  border: 1px solid #ccc;
  display: none;
}

#suggestions-list.active {
  display: block;
}

#suggestions-list li {
  padding: 8px;
  cursor: pointer;
}

#suggestions-list li:hover {
  background-color: #f0f0f0;
}

/* FAQ SECTION */

.faq {
  padding: 60px 0;
}

.faq h2 {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
}

.faq .faq__accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq .faq__accordion:last-child {
  border: none;
}

.faq .faq__accordion-trigger {
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  gap: 10px;
  margin-top: 8px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  justify-content: space-between;
  padding-top: 20px;
}

.faq .faq__accordion-trigger span {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.faq .faq__accordion-trigger svg {
  min-width: 16px;
  transition: transform 0.3s ease;
}

.faq .faq__accordion-trigger svg.active {
  transform: rotate(-180deg);
}

.faq .faq__accordion-content p {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.faq .faq__accordion-content {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  max-height: 0px;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.5s ease;
  pointer-events: none;
  padding-bottom: 20px;
}

.faq .faq__accordion-content.active {
  max-height: 700px; /* content height */
  opacity: 1;
  pointer-events: all;
} 

/* ASK YOUR QUESTION SECTION */
.ask-your-question {
  --contact-color: #E05834;
  padding: 60px 0;
  background: #f6f7f8;
}

.ask-your-question__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.ask-your-question h2 {
  color: #2b2b2b;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
}

.ask-your-question__head p,
.ask-your-question__callback-head p {
  color: #555759;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 620px;
}

.ask-your-question__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.ask-your-question__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ask-your-question__channel,
.ask-your-question__callback {
  border: 1px solid #eceff3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 34, 44, 0.06);
}

.ask-your-question__channel {
  display: flex;
  gap: 14px;
  min-height: 138px;
  padding: 20px;
  color: #2b2b2b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ask-your-question__channel:hover {
  border-color: rgba(224, 88, 52, 0.35);
  box-shadow: 0 14px 30px rgba(28, 34, 44, 0.1);
  transform: translateY(-1px);
}

.ask-your-question__channel-icon,
.ask-your-question__callback-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.ask-your-question__channel-icon img,
.ask-your-question__callback-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ask-your-question__channel-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ask-your-question__channel-title {
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.ask-your-question__channel-line {
  color: var(--contact-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.ask-your-question__channel-hint {
  color: #73777c;
  font-size: 14px;
  line-height: 1.35;
  margin-top: auto;
  padding-top: 12px;
}

.ask-your-question__icon-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ask-your-question__icon-badge--sms {
  background: #5f6676;
}

.ask-your-question__callback {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.ask-your-question__callback-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ask-your-question__callback-head h3 {
  color: #2b2b2b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.ask-your-question__callback-row {
  display: flex;
  gap: 10px;
}

.ask-your-question__callback input[type="tel"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  color: #2b2b2b;
  font-size: 16px;
  outline: none;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ask-your-question__callback input[type="tel"]:focus {
  border-color: var(--contact-color);
  box-shadow: 0 0 0 3px rgba(224, 88, 52, 0.12);
}

.ask-your-question__callback button {
  flex: 0 0 auto;
  min-height: 46px;
  border: none;
  border-radius: 8px;
  background: var(--contact-color);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 0 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ask-your-question__callback button:hover {
  background: #a93c20;
  transform: translateY(-1px);
}

.ask-your-question__consent {
  align-items: flex-start;
}

.ask-your-question__consent p {
  color: #73777c;
  font-size: 13px;
  line-height: 1.35;
}

.ask-your-question__consent a {
  color: var(--contact-color);
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .ask-your-question__layout {
    grid-template-columns: 1fr;
  }

  .ask-your-question__channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* ABOUT SECTION */
.about {
  padding: 60px 0;
  /* background: linear-gradient(270deg, #bfb0c7 0%, #d06098 66.83%, #d83880 100%); */
}

.about h2 {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
}

.about .about__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about .about__content p {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.about .about__content-right img {
  width: 560px;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.about .about__content-show-more {
  display: none;
}

/* REVIEWS SECTION */
.reviews {
  padding: 60px 0;
}

.reviews h2 {
  color: #2b2b2b;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviews p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  gap: 3px;
  align-items: center;
  margin: 18px 0 24px 0;
}

.reviews p a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 7px;
}

.reviews p a span {
  border-bottom: 1px dotted;
}

.reviews .reviews__swiper .swiper-wrapper {
  padding: 8px;
}

.reviews.no-js .swiper-wrapper {
  display: flex;
  gap: 40px;
}

.reviews.no-js .reviews__swiper .swiper-slide {
  max-width: 250px;
}

.reviews .reviews__swiper .swiper-slide {
  width: 250px;
  height: 326px;
  padding: 32px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews .reviews__swiper .swiper-slide p {
  margin-top: 12px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.reviews .reviews__swiper .swiper-slide span {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.3px;
}

.reviews .reviews__swiper-container {
  position: relative;
}

.reviews .reviews__swiper-container .reviews__swiper-button-next,
.reviews .reviews__swiper-container .reviews__swiper-button-prev {
  display: flex;
  width: 50px;
  height: 51.198px;
  padding: 14px 12px 13.198px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 0.266px 10px 0px rgba(153, 152, 168, 0.5);
  cursor: pointer;
  user-select: none;
  position: absolute;
  z-index: 10;
}

.reviews .reviews__swiper-container .reviews__swiper-button-prev {
  left: -64px;
  top: 50%;
  transform: translateY(-50%);
}

.reviews .reviews__swiper-container .reviews__swiper-button-next {
  right: -64px;
  top: 50%;
  transform: translateY(-50%);
}

/* FOOTER SECTION */
.footer {
  padding: 60px 0;
  background: linear-gradient(180deg, rgb(224 88 52 / 90%) 0%, #a83b20 100%);
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer .footer__top {
  position: relative;
  display: flex;
}

.footer .footer__line {
  height: 1px;
  width: 100%;
  background: #fff;
}

.footer .footer__top .footer__top-move-to-top {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: transparent;
  border: none;
}

.footer .footer__top .footer__top-move-to-top:hover {
  opacity: 0.8;
}

.footer .footer__top-links {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer .footer__top-links-item {
  display: flex;
  flex-direction: column;
}

.footer .footer__top-links-item h3 {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 8px;
}

.footer .footer__top-links-item a {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  transition: color 0.3s ease;
  width: max-content;
}

.footer .footer__top-links-item a:hover {
  text-decoration: underline;
}

.footer .footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer .footer__bottom-left {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.footer .footer__bottom-left p {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}

.footer .footer__bottom-main-text {
  color: #eee;
  font-family: Inter;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

.footer .footer__bottom-main-text a {
  text-decoration: underline;
  color: #eee;
}

.footer .footer__bottom-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer .footer__bottom-right-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer__bottom-right-item span {
  color: #fff;
  font-family: Inter;
  font-size: 15.625px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.16px;
}

.footer .footer__bottom-right-item a {
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer .footer__bottom-right-item--last {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}

.footer .footer__bottom-text {
  display: none;
}

/* MEDIA QUERIES */
@media (min-width: 1600px) {
  .container {
    max-width: 2300px;
    padding: 0 70px;
  }

  .hero .container {
    gap: 60px;
  }

  .hero .hero__left {
    max-width: 680px;
    padding: 48px 56px;
  }

  .hero .hero__left h1 {
    font-size: 48px;
    line-height: 62px;
  }

  .hero .hero__internet {
    flex-direction: row;
    align-items: center;
    min-width: auto;
    gap: 32px;
  }

  .hero .hero__internet-action a {
    width: 240px;
  }

  .tarif .tarif__content {
    gap: 64px;
    padding: 48px 80px;
  }

  .tarif .tarif__left {
    width: 55%;
  }

  .tarif .tarif__content .tarif__right img {
    max-width: 620px;
  }

  .included-in .container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .included-in .container > h2 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .included-in .included-in__item {
    height: 100%;
    margin-bottom: 0;
  }

  .connection-cost .connection-cost__card {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 48px 72px;
  }

  .connection-cost .connection-cost__card p,
  .connection-cost .connection-cost__card span {
    flex: 1;
  }

  .additionally .additionally__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .additionally .additionally__card {
    height: 100%;
  }

  .additionally .additionally__card-left {
    width: 100%;
  }

  .additionally .additionally__card-right img {
    width: 380px;
  }

  .request .request__card {
    padding: 56px 80px;
    gap: 90px;
    align-items: flex-start;
  }

  .request .request__left {
    width: 42%;
  }

  .request .request__right {
    border-left: 1px solid rgba(128, 128, 128, 0.3);
    padding-left: 80px;
  }

  .request .request__right label input,
  .request .request__right textarea {
    max-width: 420px;
  }

  .wifi-router .container {
    gap: 80px;
  }

  .wifi-router .wifi-router__info {
    min-width: 620px;
    max-width: 620px;
    padding: 48px;
  }

  .wifi-router .wifi-router__img {
    max-width: 640px;
  }

  .app-tv-box .app-tv-box__cards {
    gap: 40px;
  }

  .app-tv-box .app-tv-box__card {
    max-width: none;
  }
}

@media (min-width: 2200px) {
  .container {
    max-width: 2800px;
    padding: 0 80px;
  }

  .hero .hero__left {
    max-width: 720px;
  }

  .tarif .tarif__content {
    padding: 56px 96px;
    gap: 80px;
  }

  .request .request__card {
    padding: 64px 100px;
  }
}

@media (max-width: 1580px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
    .container {
      padding: 0 20px;
    }
  }


@media (max-width: 1280px) {
  .hero .hero__left h1 {
    font-size: 36px;
    line-height: normal;
  }

  .reviews .reviews__swiper-container {
    margin: 0 60px;
  }

  /* .internet .internet__swiper-container {
    margin: 0 60px;
  } */
}

@media (max-width: 1024px) {
  .header .header__top-tel .header__top-tel-link--tooltip-text {
    display: none;
  }

  .header .header__bottom-links {
    gap: 20px;
  }

  .header .header__bottom-link {
    font-size: 14px;
    border-bottom-color: #000; 
  }

  .header .header__bottom-link:hover {
  color: #E05834;
  /* border-bottom: 2px solid #E05834; */
  border-bottom-color: #E05834;
}


  .header .header__bottom-connect {
    padding: 8px 17px;
    font-size: 14px;
  }

  .header .header__dropdown-content {
    padding-left: 20px;
  }

  .hero .hero__left h1 {
    font-size: 28px;
    line-height: normal;
  }

  .hero .hero__left h1 span img {
    bottom: -15px;
  }

  .hero .hero__left {
    padding: 20px 32px;
    border-radius: 24px;
  }

  .hero .hero__internet {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    min-width: inherit;
  }

  .hero .hero__internet-action {
    width: 100%;
  }

  .hero .hero__internet-action a {
    width: 100%;
  }

  .tarif .tarif__left {
    width: 70%;
  }

  .tarif .tarif__left-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .request .request__card {
    gap: 30px;
    padding: 40px;
  }

  .request .request__right {
    padding-left: 30px;
  }

  .request .request__right label input.city {
    max-width: unset;
    width: 300px;
  }

  .request .request__right textarea {
    width: 300px;
  }

  .wifi-router .container {
    flex-direction: column-reverse;
  }

  .wifi-router .wifi-router__info {
    min-width: unset;
  }

  .wifi-router .wifi-router__action {
    flex-direction: column;
  }

  .about .about__content-right img {
    width: 420px;
  }

  .reviews .reviews__swiper .swiper-slide {
    max-width: unset;
    padding: 28px 20px;
  }

  .reviews .reviews__swiper .swiper-slide p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .internet .internet__swiper-container {
    margin: 0;
  }

  .internet .internet__swiper-container .internet__swiper-button-next,
  .internet .internet__swiper-container .internet__swiper-button-prev {
    display: none;
  }

  .reviews .reviews__swiper-container {
    margin: 0;
  }

  .reviews .reviews__swiper-container .reviews__swiper-button-next,
  .reviews .reviews__swiper-container .reviews__swiper-button-prev {
    display: none;
  }

  .footer .footer__bottom-left {
    max-width: 400px;
    gap: 36px;
  }
}
 
.header .header__bottom-logo img {
  width: 144px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  .city-modal {
    padding: 0 20px;
  }

  .modal {
    padding: 0 20px;
  }

  .city-modal .city-modal__content {
    padding: 30px 20px;
  }

  .modal .modal-content {
    padding: 40px 20px;
  }

  .modal .modal-content h3 {
    color: #E05834;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .modal .modal-content h3 + p {
    margin-bottom: 28px;
  }

  .modal .modal-content label,
  .modal .modal-content input,
  .modal .modal-content textarea {
    width: 100%;
    max-width: unset !important;
  }

  .modal .modal-close-btn {
    right: 20px;
    top: 18px;
  }

  .modal .modal-close-btn-text {
    bottom: 15px;
    right: 20px;
  }

  .modal .modal-close-btn svg {
    width: 22px;
    height: 22px;
  }

  .city-modal .city-modal__content h2 {
    color: #E05834;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .city-modal .city-modal__content-close-btn {
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
  }

  .city-modal .city-modal__content-close-btn svg {
    width: 100%;
  }

  .images-modal .images-modal__modal-content img {
    width: 347px;
    height: 571px;
  }

  .images-modal .images-modal__close-btn {
    top: -60px;
    right: 0;
  }

  /*
  .fixed-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 20px;
    right: 20px;
    gap: 12px;
    z-index: 101;
  }
  */

  .header .header__top {
    height: 23px;
  }

  .header .header__top-links .header__top-link:not(:last-child) {
    display: none;
  }

  .header .header__top-links .header__top-link {
    font-size: 13px;
    line-height: 14px;
  }

  .header .header__top-links .header__top-link svg {
    width: 12px;
    height: 12px;
  }

  .header .header__bottom-links {
    display: none;
  }

  .header .header__bottom-logo img {
    width: 104px;
  }

  .header .header__bottom {
    height: 48px;
    position: relative;
  }

  .header .header__bottom-menu {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
  }

  .header .header__bottom-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: block;
  }

  .header .header__bottom-menu-content {
    width: 80%;
    height: calc(100dvh - 23px);
    position: absolute;
    right: -100%;
    top: 23px;
    border-radius: 10px 0 0 10px;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    transition: right 0.3s ease;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
  }

  .header .header__bottom-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header .header__bottom-menu-overlay.active .header__bottom-menu-content {
    right: 0;
  }

  .header .header__bottom-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header .header__bottom-menu-location {
    display: flex;
    align-items: center;
    color: #2b2b2b;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0.48px;
    margin-left: -10px;
  }

  .header .header__bottom-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
  }

  .header .header__bottom-nav-links a {
    color: #2b2b2b;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: color 0.3s ease;
  }

  .header .header__bottom-nav-links a:hover {
    color: #a93c20;
  }

  .header .header__accordion {
    display: flex;
    flex-direction: column;
  }

  .header .header__accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
  }

  .header .header__accordion-trigger svg {
    transition: transform 0.3s ease;
  }

  .header .header__accordion-trigger svg.active {
    transform: rotate(-180deg);
  }

  .header .header__accordion-trigger:hover span,
  .header .header__accordion-trigger:hover svg path {
    color: #a93c20;
    fill: #a93c20;
  }

  .header .header__accordion-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    
    height: 0px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .header .header__accordion-content.active {
    height: auto; /* content height */
    opacity: 1;
    pointer-events: all;
    margin-top: 16px;
  }

  .header .header__accordion-content li a {
    color: #2b2b2b;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.42px;
    transition: color 0.3s ease;
  }

  .header .header__accordion-content li a:hover {
    color: #a93c20;
  }

  .header .header__bottom-mini-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .header .header__bottom-mini-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2b2b2b;
    font-family: Inter;
    font-size: var(--Header-Line-font-Size-small, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
  }

  .header .header__bottom-menu-connect {
    display: flex;
    padding: 11px 52px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    color: #f4f4f4;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    border-radius: 7px;
    background: #E05834;
    font-weight: 500;
    line-height: 20px;
    transition: background 0.3s ease;
  }

  .header .header__bottom-menu-connect:hover {
    background: #a93c20;
  }

  .breadcrumb {
    margin-top: 75px;
  }

  .payment h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .payment .payment__way h3 {
    font-size: 24px;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
  }

  .hero {
    padding: 32px 0;
    margin-top: 71px;
  }

  .hero .container {
    flex-direction: column-reverse;
    align-items: initial;
  }

  .hero .hero__right img {
    min-width: unset;
  }

  .tarif .tarif__content {
    flex-direction: column-reverse;
    background: unset;
    box-shadow: unset;
    padding: 24px 0;
  }

  .tarif {
    margin: 0;
  }

  .tarif .tarif__content .tarif__right {
    width: 100%;
  }

  .tarif .tarif__content .tarif__right img {
    border-radius: 20px;
    max-width: unset;
    width: 100%;
    max-height: unset;
    height: 256px;
  }

  .tarif .tarif__left {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    padding: 32px 20px;
  }

  .tarif .tarif__content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .tarif .tarif__content h1 span img {
    width: 100%;
    left: 0;
    bottom: -3px;
  }

  .tarif .tarif__content p {
    margin-bottom: 12px;
  }

  .included-in h2 {
    font-size: 24px;
  }

  .included-in .included-in__item {
    padding: 32px 20px;
  }

  .included-in .fttb-text {
    display: none;
  }

  .connection-cost h2 {
    font-size: 24px;
  }

  .connection-cost .connection-cost__card {
    padding: 32px 20px;
  }

  .additionally .additionally__card {
    flex-direction: column-reverse;
    padding: 32px 20px;
  }

  .additionally .additionally__card-left {
    width: 100%;
  }

  .additionally .additionally__card-left h3 {
    font-size: 20px;
  }

  .additionally .additionally__card-right img {
    width: 220px;
    height: auto;
  }

  .additionally .additionally__card-control-view {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .additionally .additionally__card-control-view svg {
    width: 34px;
    max-width: 34px;
    min-width: 34px;
  }

  .checkbox span {
    white-space: normal;
  }

  .price-popup {
    height: 65px;
    width: calc(100% - 20px);
    justify-content: center;
  }

  .price-popup .price-popup__col {
    display: none;
  }

  .price-popup .price-popup__col--mobile {
    display: block;
  }

  .price-popup .price-popup__col--mobile h4 {
    font-size: 20px;
  }

  .price-popup .price-popup__action a {
    display: flex;
    width: 149px;
    height: 40px;
    padding: 20px 80px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .request .request__card {
    flex-direction: column;
    box-shadow: none;
    border-radius: none;
    padding: 0;
  }

  .request .request__left {
    width: 100%;
    padding: 32px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  }

  .request .request__right {
    padding: 32px 20px;
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  }

  .request .request__right label input,
  .request .request__right textarea {
    max-width: unset;
    width: 100% !important;
  }

  .request .request__right h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .request .request__right h3 + p {
    margin-bottom: 20px;
  }

  .internet {
    padding: 32px 0;
  }

  .internet h2 {
    font-size: 24px;
  }

  .internet .internet__swiper-tab {
    gap: 20px;
  }

  .internet .internet__swiper-tab button {
    padding: 0 0 12px 0;
  }

  .wifi-router {
    padding: 20px 0;
  }

  .wifi-router .wifi-router__info {
    padding: 32px 20px;
    border-radius: 5px;
  }

  .wifi-router .wifi-router__info h2 {
    color: #E05834;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .wifi-router .wifi-router__action a {
    padding: 16px 18px;
    width: 168px;
  }

  .wifi-router .wifi-router__action .wifi-router__price > span {
    font-size: 36px;
  }

  .wifi-router .wifi-router__accordion-content.active {
    max-height: 360px;
  }

  .wifi-router .wifi-router__img img {
    width: 211px;
    margin: 0 auto;
  }

  .app-tv-box {
    padding: 32px 0;
  }

  .app-tv-box h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .app-tv-box h2 + p {
    margin-bottom: 16px;
  }

  .app-tv-box .app-tv-box__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .app-tv-box .app-tv-box__card {
    width: 100%;
    padding: 32px 20px;
  }

  .app-tv-box .app-tv-box__media {
    height: 220px;
    margin-bottom: 22px;
  }

  .app-tv-box .app-tv-box__card img {
    max-width: unset;
  }

  .app-tv-box .app-tv-box__card h3 {
    font-size: 20px; 
  }

  .app-tv-box .app-tv-box__terms {
    flex-direction: column;
    gap: 8px;
  }

  .app-tv-box .app-tv-box__terms span {
    width: 100%;
  }

  .app-tv-box .app-tv-box__card .app-tv-box__button {
    font-size: 16px;
    display: flex;
    width: 100%;
    min-width: 233px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: normal;
    border-radius: 7px;
    margin-top: 20px;
  }

  .search-location {
    padding: 100px 0;
    position: relative;
  }

  .search-location form svg {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 53px;
    height: 69px;
    object-fit: cover;
  }

  .search-location h2 {
    color: #E05834;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    display: block;
    width: unset;
  }

  .search-location h2 svg {
    display: none;
  }

  .search-location form {
    flex-direction: column;
  }

  .search-location form button {
    display: flex;
    width: 252px;
    height: 44px;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 3px;
  }

  .faq {
    padding: 32px 0;
  }

  .faq h2 {
    font-size: 24px;
  }

  .ask-your-question {
    padding: 36px 0;
  }

  .ask-your-question__head {
    margin-bottom: 22px;
  }

  .ask-your-question h2 {
    font-size: 24px;
  }

  .ask-your-question__head p,
  .ask-your-question__callback-head p {
    font-size: 15px;
  }

  .ask-your-question__layout {
    grid-template-columns: 1fr;
  }

  .ask-your-question__channels {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ask-your-question__channel {
    min-height: 0;
    padding: 16px;
  }

  .ask-your-question__callback {
    padding: 18px;
  }

  .ask-your-question__callback-head h3 {
    font-size: 20px;
  }

  .ask-your-question__callback-row {
    flex-direction: column;
  }

  .ask-your-question__callback button {
    width: 100%;
  }

  .about {
    padding: 32px 0;
  }

  .about h2 {
    font-size: 24px;
  }

  .about .about__content {
    flex-direction: column-reverse;
  }

  .about .about__content-right img {
    width: 100%;
    height: 231px;
  }

  .about .about__content-show-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-top: 18px;
  }

  .about .about__content-text {
    max-height: 170px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }

  .about .about__content-text.active {
    max-height: 700px;
  }

  .about .about__content-show-more svg {
    transition: all 0.3s ease;
  }

  .about .about__content-show-more svg.active {
    transform: rotate(-180deg);
  }

  .reviews {
    padding: 32px 0;
  }

  .reviews h2 {
    font-size: 24px;
  }

  .reviews p {
    margin: 20px 0;
    display: block;
  }

  .footer {
    padding: 32px 0;
  }

  .footer .footer__top-links {
    flex-wrap: wrap;
    gap: 24px;
    padding-right: 70px;
  }

  .footer .footer__top-move-to-top {
    width: 50px;
    height: 50px;
  }

  .footer .footer__top-move-to-top svg {
    width: 100%;
  }

  .footer .footer__bottom {
    flex-direction: column;
    gap: 28px;
    justify-content: unset;
  }

  .footer .footer__bottom-left p:not(.footer__bottom-main-text) {
    display: none;
  }

  .footer .footer__bottom-right-item a {
    font-size: 24px;
  }

  .footer .footer__bottom-right-item--last {
    font-size: 16px;
  }

  .footer .footer__bottom-right-item--last img {
    width: 27px;
    height: 27px;
  }

  .footer .footer__bottom-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer .footer__bottom-text p {
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }

  input,
  textarea {
    padding: 14px !important;
  }

  input[type="checkbox"] {
    padding: unset !important;
  }

  .price-popup {
    padding: 0;
  }
}

@media (max-width: 375px) {
  .modal {
    /* align-items: flex-start; */
    padding: 10px;
  }

  .images-modal {
    align-items: center;
    overflow-y: auto;
  }

  .images-modal .images-modal__modal-content {
    width: 98%;
    display: flex;
  }

  .images-modal .images-modal__modal-content img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }

  .modal .modal-content {
    width: 98%;
  }

  .modal .modal__accordion-trigger span {
    font-size: 14px;
  }
}

@media (max-height: 740px) {
  .modal {
    align-items: flex-start;
    
  }
}

.tarif__left ul.internet__prize {
    margin-bottom: 16px;
}

.modal-notification {
    background-color: #ffdddd;
    border: 1px solid #ff0000;
    padding: 10px;
    margin-top: 15px;
    color: #ff0000;
    border-radius: 5px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


.request .request__left {
    min-width: 250px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 40px;
}

.image-broken-site {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 600px) {
    .image-broken-site {
        max-width: 600px
    }
}

.support__content .option img {
    max-width: 200px;
}

.modal-image img {
    max-width: 200px;
}

.support__content.option {
    padding: 20px 0;
}

.support__content.option a {
    font-size: 32px;
    color: #E05834;
    padding: 8px 0 0 0;
    display: block;
}



/* Отображение скрытых ссылок */
#showLink {
  position: relative;
  width: 250px;
  height: 50px;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #E05834;
  background: white;
  color: #E05834;
  transition: color 0.3s;
}

#showLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #E05834;
  transition: width 3s linear;
}

#showLink.holding::before {
  width: 100%;
}

#showLink.holding {
  color: white;
}

#showLink {
user-select: none; /* Отключает выделение текста */
-webkit-user-select: none; /* Для Safari */
-moz-user-select: none; /* Для Firefox */
-ms-user-select: none; /* Для IE/Edge */
}




#showLink {
  position: relative;
  width: 250px;
  height: 50px;
  margin: 20px 0;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #E05834;
  background: white;
  color: #E05834;
  transition: color 0.3s;
  border-radius: 7px;
  user-select: none; /* Отключает выделение текста */
  -webkit-user-select: none; /* Для Safari */
  -moz-user-select: none; /* Для Firefox */
  -ms-user-select: none; /* Для IE/Edge */
}

#showLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #E05834;
  transition: width 1s linear;
  z-index: 0;
}

/* Класс holding применяется при удержании кнопки */
#showLink.holding::before {
  width: 100%;
}

#showLink.holding {
  color: white;
}

.there-is-no-my-address {
  color: blue;
  font-size: 13px;
}

#tech-info {
  margin-top: 10px;
    font-size: 20px;
    color: green;
    background-color: white;
    width: fit-content;
    padding: 12px;
    border-radius: 8px; 
}

.check-is-successfull-so-make-order {
  /* margin-top: 12px;
  color: #E05834;
  background-color: white;
  width: fit-content;
  padding: 12px;
  border-radius: 8px;
  border-color: #E05834;
  cursor: pointer; */

  margin-top: 20px;
  color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 7px;
    background: #E05834;
    display: flex
;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    align-self: stretch;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}


/* --- Стили для модального контента (вложены локально) --- */
.city-modal__content { 
padding: 20px; font-family: Arial, sans-serif; 
min-height: 60vh;
height: 80vh;          /* фиксированная видимая область */
  overflow-y: auto; 
}
.city-modal__content h2 { margin: 0 0 12px 0; font-size: 22px; }

/* Поисковая строка */
.city-search {
  margin: 20px 0 20px 0;
  display: block;
}
.city-search input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #e0573469;
  border-radius: 8px;
}

/* Топ-города: горизонтально на десктопе, вертикально на мобильном */
.top-cities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap; /* перенос на новую строку, если не помещается */
  margin: 10px 0 20px 0;
  list-style: none;
  padding: 0;
}
.top-cities li { margin: 0; }
.top-cities a {
  display: inline-block;
  padding: 0px 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  font-size: 14px;
  color: #222;
  white-space: nowrap;
}

.top-cities a {
  padding: 8px 12px;
}

.top-cities a:hover { box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

/* Мобильный режим: делаем вертикально (переключение при узких экранах) */
/* @media (max-width: 480px) {
  .top-cities { flex-direction: column; }
  /* .top-cities a { width: 100%; } */

/* Обёртка регионов: grid, auto-fit создаёт столько колонок, сколько помещается */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* Каждый регион в своём контейнере (в одной колонке) */
.region-card {
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  /* border: 1px solid #f0f0f0; */
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.region-card h3 {
margin: 0px 0 20px 0;
    font-size: 16px;
    color: #e05734;
}
.region-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.region-card li {
  margin: 6px 0;
  cursor: pointer; /* курсор для всего li */
}

/* Ссылки занимают весь li */
.region-card li a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important; /* сбрасываем подчёркивание */
    text-decoration-line: none;        /* явное отключение */
    color: #1a1a1a;
    font-size: 14px;
    cursor: pointer;
}

.region-card li a:hover {
  text-decoration: underline;
  color: #951b81
}

/* Скрываем элементы при фильтрации */
.hidden { display: none !important; }

/* Кнопка закрытия */
.city-modal__content-close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
}

/* Модалка начинается чуть ниже, чтобы верх был виден */
.modal.city-modal {
  align-items: flex-start;
  padding-top: 60px;
}

.city-modal__content.choose_city {
    width: -webkit-fill-available;
}


.city-modal .city-modal__content.choose_city li {
    text-decoration: none;
}


.home_or_business_links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3d3d3d;
  font-family: Inter;
  font-size: var(--Header-Line-font-Size-small, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.home_or_business_links a {
  color: black;
}

.header__accordion-content ul li {
  margin-bottom: 8px;
}

.header__accordion-content ul li:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) and (max-width: 1000px) {
  .header .header__top-links {
    gap: 16px;
  }
}



@media (max-width: 768px) {
  .header .header__top-link--location {
    display: block !important;
  }

  .header .header__top-link--location svg {
    width: 20px !important;
    height: auto; /* чтобы пропорции сохранились */
  }
}
@media (max-width: 600px) {
  .app-tv-box .app-tv-box__info-link {
    text-align: center;
  }

  .app-tv-box .app-tv-box__info-link a {
    max-width: 100%;
  }
}
.header__city-hint-text .header__city-inline-link {
  background: transparent;
  border: none;
  color: #6900af;
  text-decoration: underline;
  font-weight: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}
.sberbox__section-title { 
  font-size: 30px;
  margin-bottom: 24px;
  color: #161616;
}
