:where(html) {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:where(h1) {
  font-size: 2em;
  margin-block-end: 0.67em;
  margin-block-start: 0.67em;
}

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin-block-end: 0;
  margin-block-start: 0;
}

:where(hr) {
  box-sizing: initial;
  color: inherit;
  height: 0;
}

:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(code, kbd, pre, samp) {
  font-family: monospace, monospace;
  font-size: 1em;
}

:where(small) {
  font-size: 80%;
}

:where(table) {
  border-color: currentColor;
  text-indent: 0;
}

:where(button, input, select) {
  margin: 0;
}

:where(button) {
  text-transform: none;
}

:where(
    button,
    input:is([type="button" i], [type="reset" i], [type="submit" i])
  ) {
  -webkit-appearance: button;
}

:where(progress) {
  vertical-align: initial;
}

:where(select) {
  text-transform: none;
}

:where(textarea) {
  margin: 0;
}

:where(input[type="search" i]) {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

:where(
    button,
    input:is(
        [type="button" i],
        [type="color" i],
        [type="reset" i],
        [type="submit" i]
      )
  )::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:where(
    button,
    input:is(
        [type="button" i],
        [type="color" i],
        [type="reset" i],
        [type="submit" i]
      )
  )::-moz-focusring {
  outline: 1px dotted ButtonText;
}

:where(:-moz-ui-invalid) {
  box-shadow: none;
}

:where(dialog) {
  background-color: #fff;
  border: solid;
  color: #000;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

:where(summary) {
  display: list-item;
}





.stepsWrapper {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  width: 100%;
  padding: 30px;
}
.stepsList {
  display: flex;
  gap: 20px;
  font-family: Arial, sans-serif !important;
  flex-wrap: wrap;
  border-radius: 24px;
  justify-content: center;
}
.stepsList h3 {
  font-family: Arial, sans-serif !important;
  font-size: 24px;
}

.stepsWrapper h2 {
  font-size: 36px;
}
.stepsList p {
  font-size: 22px;
}
.itemWrapper {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;

  max-width: 300px;
  align-items: flex-start;
  justify-content: flex-start;
}
.stepsList__item {
  transition: 0.3s;
  border-radius: 24px;
  will-change: transform;
  background-color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
}
.stepsList__item:hover {
  transform: translateY(-5px);
  cursor: pointer;

  box-shadow: 0 125px 80px rgba(23, 58, 105, 0.07),
    0 81.0185px 46.8519px rgba(23, 58, 105, 0.055),
    0 48.1481px 25.4815px rgba(23, 58, 105, 0.043),
    0 25px 13px rgba(23, 58, 105, 0.035),
    0 10.1852px 6.51852px rgba(23, 58, 105, 0.027),
    0 2.31481px 3.14815px rgba(23, 58, 105, 0.016);
}

.step {
  font-size: 32px;
  background-color: #0e019e;
  border-radius: 24px;
  padding: 10px;
  padding-right: 80px;
  padding-left: 20px;
  color: #fff;
}

html {
  /* Шрифт будет не меньше 14px, не больше 18px и пропорционально экрану между ними */
  font-size: clamp(14px, 2vw, 18px) !important;
}
.slide {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;

  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
  justify-content: center;
  cursor: pointer;
}

.reviewWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  width: 100%;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewText {
  font-size: 32px;
  color: #555;
  height: 120px;
  margin-bottom: 10px;
  text-align: left;
}
.bottomProfile {
  display: flex;
  gap: 3px;
  flex-direction: column-reverse;
}
.profilePic {
  width: 54px !important;
  height: 54px !important;
}

.author {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.platformIcon {
  max-width: 180px;
  width: 100%;
}
.readMore h2 {
  text-align: left;
}
.readMore {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 20px;
}
.reviewsPlatforms__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 24px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  will-change: transform;
}

.reviewsPlatforms__item:hover {
  transform: translateY(-5px);
  cursor: pointer;

  box-shadow: 0 125px 80px rgba(23, 58, 105, 0.07),
    0 81.0185px 46.8519px rgba(23, 58, 105, 0.055),
    0 48.1481px 25.4815px rgba(23, 58, 105, 0.043),
    0 25px 13px rgba(23, 58, 105, 0.035),
    0 10.1852px 6.51852px rgba(23, 58, 105, 0.027),
    0 2.31481px 3.14815px rgba(23, 58, 105, 0.016);
}
.platformLink {
  display: flex;
  gap: 10px;
  transition: 0.3s;
  align-items: center;
  height: 73px;
  width: 285px;
}
.platformLink:hover {
  color: #e60108;
}
.platformLink:after {
  content: "";
  display: inline-block;
  width: 15px;

  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.48894 0H9.24889C9.66372 0 10 0.336281 10 0.751106V7.51106C10 7.92588 9.66372 8.26216 9.24889 8.26216C8.83407 8.26216 8.49779 7.92588 8.49779 7.51106V2.56443L1.28222 9.78001C0.988892 10.0733 0.513319 10.0733 0.219994 9.78001C-0.0733312 9.48668 -0.0733312 9.01111 0.219994 8.71778L7.43557 1.50221H2.48894C2.07412 1.50221 1.73784 1.16593 1.73784 0.751106C1.73784 0.336281 2.07412 0 2.48894 0Z" fill="%231E1E1E" /></svg>')
    no-repeat center center;
  background-size: contain;
}
.reviewsPlatforms {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.advantagesList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  margin: 20px;
}

.advantagesList__item {
  background: #fff;
  padding: 25px;
  height: 150px;
  border-radius: 24px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s;
  will-change: transform;
  position: relative;
}

.advantagesList__item:hover {
  transform: translateY(-5px);
}

.advantageIcon {
  max-width: 120px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -31px;
}

.advantagesWrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.advantagesDescription p {
  font-size: 24px;
}

.advantagesDescription {
  font-size: 22px;
  background: #fff;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .readMore {
    text-align: center;
  }
  .readMore h2 {
    text-align: center;
  }
  .reviewsPlatforms {
    justify-content: center;
  }
  .reviewsPlatforms__item {
    justify-content: center;
  }
  .rel {
    display: none;
  }
  .reviewText {
    font-size: 20px;
  }
}
.galleryWrapper {
  max-width: 1320px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px;
}

.swiperSlideImage {
  max-width: 600px;
  border-radius: 24px;

  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  will-change: scale;
}
.swiperSlideImage:hover {
  transform: scale(1.02);
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
}

footer {
  background-color: #f8f8f8;
  padding: 40px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.footerImg {
  max-width: 350px;
  width: 100%;
  border-radius: 24px;
}







.footerContactList__item svg {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  fill: #e60108;
}



.callBtn {
  height: 70px;
  max-width: 295px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background-color: #e60108;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
.callBtn:hover {
  filter: brightness(85%);
}

@media (max-width: 768px) {
  .callBtn {
    display: flex;
  }
}
/* Контейнер для обоих виджетов */
.call-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Виджет звонка */
.callWidget {
  width: 54px;
  height: 54px;
  background-color: #e60108;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: pulseWave 2s infinite;
  transition: 0.3s;
  cursor: pointer;
}

.callWidget:hover {
  filter: brightness(85%);
}
/* Виджет WhatsApp — изначально скрыт */
.whatsappWidget {

  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

/* Класс, который включает видимость WhatsApp */
.whatsappWidget.visible {
  transform: translateY(0);
  opacity: 1;
  display: none;
  pointer-events: auto;
}


.whatsapp-ico{
	
    fill: white;
    
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    /* box-shadow: 2px 2px 11px rgba(0,0,0,0.7); */
   position: absolute;
  bottom: 70px; /* Расположен над виджетом звонка */

  width: 54px;
  height: 54px;
    z-index: 10;
}


@media (max-width: 768px) {.advantagesList {
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin: 10px;
	} }

.blog {
      display: flex;
      gap: 20px;
	flex-direction: column;
      padding: 20px;
    }
  
    /* Карточка статьи */
   
    .toggle-button {
      cursor: pointer;
      margin: 10px 0;
      padding: 5px 10px;
      border: 1px solid #ccc;
      background: #f9f9f9;
      font-size: 14px;
      align-self: flex-start;
    }
    .hidden-content {
      display: none;
      margin-top: 10px;
    }
/* Общий стиль футера */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Контейнер футера */
.footer-container {
	align-items: center !important;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;

  padding: 0 20px;
}

/* Брендинг */
.footer-branding {
  flex: 1 1 300px;
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 200px;
}

/* Навигация */
.footer-navigation {
  flex: 1 1 300px;
  margin-bottom: 20px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
	display: flex;
	flex-direction: column;
	
	gap: 5px;
  text-align: center;
}

.footer-nav li {
  display: inline-block;
  margin: 0 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
	transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #e60108;
}

/* Контактная информация */
.footer-contacts {
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact-item {
  margin-bottom: 10px;
}

.footer-contact-item svg {
  vertical-align: middle;
  margin-right: 8px;
}

.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
	transition: color 0.2s ease
}

.footer-contact-item a:hover {
  color: #e60108;
}

/* Кнопка "Вызвать комиссара" */
.callBtn {
  background-color: #e60108;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.callBtn:hover {
  background-color: #c40000;
}

/* Нижняя часть футера */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  margin-top: 20px;
  font-size: 14px;
}

/* Заголовки секций футера */
.footer-section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}

/* Медиа-запросы для адаптивности */

/* Мобильные устройства (макс. 767px) */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    align-items: center ;
	   justify-content: center; 
    text-align: center;
  }
  .footer-branding,
  .footer-navigation,
  .footer-contacts {
    flex: 1 1 100%;
    margin-bottom: 20px;
	    display: flex;
	  flex-direction: column;
	  align-items: center;
  }
  .footer-nav li {
    display: block;
    margin: 5px 0;
  }
}

/* Планшеты (от 768px до 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
  }
  .footer-branding,
  .footer-navigation,
  .footer-contacts {
    flex: 1 1 300px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
    margin-bottom: 20px;
  }
}


/* Заголовки */


/* Остальные элементы также следует задавать в rem или em, чтобы шрифты масштабировались пропорционально */

