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

* {
  border: none;
  margin: 0;
  padding: 0;

  /* outline: 1px solid green; */
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  display: block;
}

img {
  vertical-align: top;
}

ol,
ul,
li {
  list-style: none;
}

a,
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;

}

a,
button {
    cursor: pointer!important;  
}

a {
  text-decoration: none;
}

button[disabled] {
  cursor: auto;
}

input,
button,
textarea,
select {
  background-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
  font-weight: inherit;
}

/* global */

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-bg: #f1f2f4;

  --color-accent-primary: #011f5b;
  --color-accent-primary-light: #c8d3eb;
  --color-accent-secondary: #d00c00;
  --color-star-empty: #80731a;
  --color-star-fill: #fcbc05;

  --color-accent-primary-extra: #0e6bed;
  --color-border: #d3d5e4;

  --items: 1;
  --gap: 16px;
  --br: 8px;

  --transition--l100: 0.1s linear;
  --transition--l200: 0.2s linear;
  --transition--l300: 0.3s linear;
  --transition--e100: 0.1s ease;
  --transition--e200: 0.2s ease;
  --transition--e300: 0.3s ease;
  --transition--e800: 0.8s ease;
}

*,
:before,
:after {
  transition: var(--transition--l100);
}

html {
  --plr: 12px;
  --header-h: 40px;
  --header-p-top: 20px;
  --scroll-padding-top: calc(var(--header-h, 40px) + var(--header-p-top, 20px));

  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top);
  -webkit-overflow-scrolling: touch;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;

  color: var(--color-black);

  background-color: var(--color-bg);
}

body.isLoading,
body.modalIsOpen,
body.burgerMenuIsOpen {
  overflow-y: hidden;
}

main {
  position: relative;
  contain: paint;
}

footer {
  margin-top: auto;
}

svg {
  pointer-events: none;
}

.section {
  padding: 80px 0;
}
.container {
  width: 100%;
  padding: 0 var(--plr);
  margin: 0 auto;
}

.page-title,
.section-title {
  font-size: 36px;
  font-weight: 500;
}
.page-title {
  line-height: 111%; /* 39.96px */
}
.section-title {
  line-height: 102%; /* 36.72px */
}
.section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  text-align: center;
  font-weight: 600;
  line-height: 125%; /* 20px */
  letter-spacing: -0.16px;
}
.section-subtitle::before {
  content: "";

  display: block;
  width: 10px;
  height: 10px;

  border-radius: 50%;
  background-color: var(--color-accent-secondary);
}
.section-subtitle--white::before {
  background-color: var(--color-white);
}
.section-subtitle--red::before {
  background-color: var(--color-accent-secondary);
}
.section-subtitle--blue::before {
  background-color: var(--color-accent-primary);
}

.cardset {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.cardset__item {
  flex-basis: calc(
    (100% - var(--gap, 16px) * (var(--items) - 1)) / var(--items)
  );
  width: calc((100% - var(--gap, 16px) * (var(--items) - 1)) / var(--items));
}

.hover-line {
  position: relative;
}
.hover-line:before {
  content: "";
  width: 100%;
  max-width: 0;
  height: 1px;
  transition: var(--transition--l100);
  background-color: currentColor;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.hover-line:hover:before {
  max-width: 100%;
}

.accordion__content {
  grid-template-rows: 0fr;
  display: grid;
}
[data-accordion-box].active .accordion__content {
  grid-template-rows: 1fr;
}
.accordion__content-inner {
  overflow: hidden;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.btn--fill-white {
  color: var(--color-accent-primary);
  background-color: var(--color-white);
}
.btn--fill-red {
  color: var(--color-white);
  transition: .3s ease;
  background-color: var(--color-accent-secondary);
}
.btn--fill-red:hover {
    box-shadow: 0px -10px 23px 0px #F81608 inset;
}
.btn--fill-blue {
  color: var(--color-white);
  background-color: var(--color-accent-primary);
}
.btn--action {
  width: fit-content;
  height: 55px;
  padding: 10px 16px;

  border-radius: 8px;
}
.btn--action svg {
  flex-shrink: 0;
  width: 16px;

  fill: currentColor;
}

.logo img {
  object-fit: contain;
}

.swiper-wrap {
  position: relative;
}

.nav__list {
  display: flex;
}

.burger-menu .nav__link--dropdown.nav__link,
.nav__link--dropdown .nav__link {
  display: flex;
  align-items: center;
  gap: 6px;

  cursor: pointer;
}

.burger-menu .nav__link--dropdown.nav__link svg,
.nav__link--dropdown .nav__link svg {
  flex-shrink: 0;
  width: 8px;
  height: 5px;
}

.nav__sublist-wrap {
  position: absolute;
  z-index: 1;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.nav__sublist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  width: 280px;

  color: #000;
  font-weight: 500;
  line-height: 125%; /* 20px */
  letter-spacing: -0.16px;
  text-transform: capitalize;

  border-radius: 8px;
  background: #fff;
}
.nav__subink {
  display: flex;
  align-items: center;
  /* gap: 8px; */
}
.nav__subink::before {
  content: "";

  display: block;
  width: 8px;
  height: 8px;
  max-width: 0;

  border-radius: 50%;
  background-color: #d00c00;
}
.nav__subink:hover::before {
  max-width: 8px;
  margin-right: 8px;
}

.header__nav .nav__link--dropdown.nav__link:hover svg {
  transform: rotate(180deg);
}
.header__nav .nav__link--dropdown:hover .nav__sublist-wrap {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.rating-services {
  width: 144px;
  margin-left: auto;
  position: relative;
}
.rating-service {
  position: absolute;
}

.animFadeItems {
  opacity: 0;
  animation: fadeItem 15s infinite;
}

.animFadeItems:nth-child(1) {
  animation-delay: 0s;
}
.animFadeItems:nth-child(2) {
  animation-delay: 5s;
}
.animFadeItems:nth-child(3) {
  animation-delay: 10s;
}

@keyframes fadeItem {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.loader__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;

  background-color: var(--color-black);
  opacity: 1;
  z-index: 50;
}

.isHidden .loader__backdrop {
    display: none;
  }

.lds-roller {
  position: relative;

  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: ' ';
  position: absolute;

  display: block;
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -4px;

  border-radius: 50%;
  background-color: var(--color-accent-primary);
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.location-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header {
  position: absolute;
  top: var(--header-p-top);
  left: 0;
  z-index: 2;

  width: 100%;
  height: var(--header-h);
  /* padding: 10px 0; */

  color: var(--color-white);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.header__box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__cta {
  height: 40px;
}
.header__logo img {
  width: 80px;
  height: 40px;
}
.header__nav .nav__list {
  align-items: center;
  gap: 32px;
  margin-left: 40px;
}
.header .nav__sublist {
  margin-top: 10px;
}
.footer .nav__sublist {
  margin-top: 8px;
}

.footer {
  padding-bottom: 10px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 40px 30px;

  color: var(--color-white);

  border-radius: 20px;
  background: #011438;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__nav {
  order: 3;
}
.footer__nav .nav__list {
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer__nav .nav__link--dropdown .nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__location-box {
  align-items: center;
  margin: 50px 0 24px;
  gap: 20px;
  width: 100%;
}
.footer__location-box .contact-link {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.footer__location-box .contact-link__text {
  text-align: center;
}
.footer__location-box .contact-link--phone {
  width: 100%;
}

.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}
.footer__box {
  display: flex;
  gap: 16px;
}
.footer__box--created-by {
  align-items: center;
  justify-content: space-between;
}
.footer__box--policy {
  flex-direction: column;
  align-items: center;
}
.footer__created-by {
  gap: 8px;
  width: fit-content;
  display: flex;
}
.footer__created-by img {
  width: 33px;
  height: 33px;

  object-fit: cover;
  border-radius: 3px;
}
.footer__created-by p {
  display: flex;
  align-items: center;
  gap: 4px;
}
.copyright {
  max-width: 220px;
  text-align: center;
}

.swiper-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* width: 100%; */

  pointer-events: none;
}

.swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  background-color: #fff;

  border-radius: 50%;
  pointer-events: initial;
  transition: .3s ease;
}

.swiper-btn:hover {
    transform: scale(1.05);
}

.burger-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #011f5b;
}
.burger-menu-btn .burger-box {
  --items: 2;
  --gap: 4px;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.burger-circle {
  flex-shrink: 0;

  display: flex;
  width: 5px;
  height: 5px;

  border-radius: 50%;
  background-color: #fff;
}

.burger-menu {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  overflow-y: scroll;

  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.burger-menu.isHidden {
  display: none;
  pointer-events: none;
  visibility: hidden;
}
.burger-menu__backdrop {
  position: relative;

  flex-grow: 1;
  display: flex;
  flex-direction: column;

  &::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    flex-grow: 1;
    width: 100%;
    height: 100%;

    /* opacity: 0.7; */
    background: #001a4e;
  }
}
.burger-menu__backdrop.isHidden &:before {
  opacity: 0;
}
.burger-menu__container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding-top: 140px;
  padding-bottom: 50px;
}
.isHidden .burger-menu__container {
  transform: translateY(-101%);
}

.burger-menu__nav .nav__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.burger-menu__nav .nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger-menu__nav .nav__link {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%; /* 30px */
  letter-spacing: -0.24px;
  text-transform: capitalize;
}
.burger-menu .nav__sublist-wrap {
  position: static;
  opacity: 1;
  pointer-events: all;
  visibility: visible;

  margin-top: 6px;
}

.burger-menu__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.burger-menu__actions .contact-link--location {
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.burger-menu__actions .contact-link--phone {
  width: 100%;
}

.burger-menu__burger-menu-btn {
  position: absolute;
  top: 28px;
  right: 20px;
  z-index: 2;
  background-color: transparent;
}

.burger-menu__burger-menu-btn svg {
  pointer-events: none;
}

.hero {
  --p-top: 50px;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--scroll-padding-top) + var(--p-top));
  padding-bottom: 40px;
  /* min-height: var(--vh, 100vh); */

  color: var(--color-white);
  background: linear-gradient(
      180deg,
      #000 0%,
      rgba(0, 0, 0, 0) 51.92%,
      #000 94.23%
    ),
    var(--bg-hero-url, url("/admin/uploads/images/bg-hero-home.webp"));
  background-repeat: no-repeat;
  background-position: center, left calc(50% + 300px) center;
  background-size: cover;
  height: 100vh;
}
.hero__container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__title {
  margin-bottom: 12px;
}
.hero__text {
  margin-bottom: 32px;
}
.hero__time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;

  font-size: 16px;
  font-weight: 600;
  line-height: 125%; /* 20px */
  letter-spacing: -0.16px;
}
.hero__time svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__msgs {
  width: 192px;
  position: relative;
}

.hero__msg::before {
    content: "";
    position: absolute;
    left: -12px;
    width: 8px;
    height: 8px;
    background: #D00C00;
    border-radius: 100%;
}

@media(max-width: 768px) {
    .hero__msg::before {
    left: 0;
    top: -12px
    }
}

.hero__msg {
  position: absolute;
}

.hero__box-wrap--1 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hero__box-wrap--1 .hero__box {
  display: flex;
  width: 100%;
  min-height: 54px;
}

/* .reviews-rating-box {
  margin-left: auto;
} */

.rating-service__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(3.7px);
}
.rating-service__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  /* padding: 8px; */

  border-radius: 8px;
  background: #fff;
}
.rating-service__img {
  width: 24px;
  height: 24px;
}
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating-service__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10.4px;
  font-weight: 500;
  line-height: normal;
  text-align: end;
}

.certificates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: auto, 60px; */
  margin-bottom: 80px;
}
.certificates__img {
  width: 80px;
  height: 80px;
}

.issues {
  padding: 100px 0;
}

.issues__subtitle {
  margin-bottom: 40px;
}
.issues-quote__text {
  max-width: 670px;
  margin: 0 auto 24px;

  font-size: 28px;
  font-weight: 500;
  line-height: 102%;
  text-align: center;
}
.issues-quote__text span {
  color: var(--color-accent-secondary);
}
.issues-quote__author {
  position: relative;

  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0 auto 144px;

  font-size: 14px;
  line-height: 125%; /* 17.5px */
  letter-spacing: -0.14px;
}
.issues-quote__author span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.issues-quote__author span::before {
  content: "";

  flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;

  border-radius: 50%;
  background-color: var(--color-accent-secondary);
}
.issues-quote__author svg {
  position: absolute;
  top: -24px;
  right: -90px;
}

.issues__list {
  --gap: 16px;

  display: flex;
  margin-bottom: 130px;
}
.issue {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 367px;
  padding: 30px;

  border-radius: 16px;
  background-color: var(--color-white);
  overflow: hidden;
}
.issue__text {
  position: relative;
  z-index: 1;

  font-size: 24px;
  font-weight: 500;
  line-height: 111%; /* 26.64px */
}
.issue__text--white {
  color: var(--color-white);
}
.issue__link {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 52px;
}
.issue__img {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.maintenance {
  position: relative;

  padding: 428px 0 100px;
}
.maintenance::before {
  content: "";
  position: absolute;
  top: -68px;
  left: 0;
  z-index: -1;
  /* transform: translateY(-50%); */

  display: block;
  width: 387px;
  height: 640px;

  background: url("/assets/images/maintenance-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.maintenance::after {
  content: "";
  position: absolute;
  top: 38px;
  /* left: calc(50% - 340px); */
  left: -158px;

  display: block;
  width: 551px;
  height: 368px;

  background: url("/assets/images/maintenance.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.maintenance__title {
  margin-bottom: 14px;
}
.maintenance__text {
  margin-bottom: 32px;
}
.maintenance__cta {
  width: 100%;
}

.process {
  padding: 0 0 100px;
}
.process__subtitle {
  margin-bottom: 20px;
}
.process__title {
  margin-bottom: 40px;
  text-align: center;
}
.process__list {
  counter-reset: item;
  --gap: 16px;
}
.process-step {
  display: flex;
  flex-direction: column;
  padding: 32px;

  border-radius: 16px;
  background: #fff;
}
.process-step__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.process-step__top::before {
  content: "";

  display: block;
  width: 100%;
  height: 1px;

  background-color: var(--color-accent-primary-light);
}
.process-step__top::after {
  counter-increment: item;
  content: "0" counter(item);

  color: var(--color-accent-primary-light);
}
.process-step__icon {
  order: -1;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  border-radius: 100%;
  background: #011f5b;
}
.process-step__icon svg {
  width: 16px;
  height: 16px;
}

.process-step__img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 32px auto;

  border-radius: 50%;
}
.process-step__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 111%; /* 26.64px */
  max-width: 80%;
}
@media(max-width: 768px) {
  max-width: 80%;    
}
.process__cta {
  width: 100%;
  margin: 40px auto 12px;
}

.reviews {
  padding: 0;
}
.reviews__box {
  display: flex;
  flex-direction: column;
  padding: 96px 24px 40px;

  color: var(--color-white);

  border-radius: 20px;
  background-color: var(--color-accent-primary);
}
.reviews__title {
  text-align: center;
}
.reviews__imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 40px;
}
.reviews__img {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  object-fit: cover;
}
.reviews__img:not(:first-child) {
  margin-left: -17px;
}

.review {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: initial;
}
.review__text {
  margin-bottom: 40px;

  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 20px;
  line-height: 125%; /* 25px */
}
.review-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.review__stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__btn-add {
  margin-top: 40px;

  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.reviews-swiper-btn-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gallery {
  padding: 40px 0 90px;
}
.gallery__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gallery__title {
  margin-bottom: 12px;
}
.gallery__text {
  margin-bottom: 25px;
}
.gallery-list {
  height: fit-content;
}
.gallery-item {
  width: fit-content;
  height: fit-content;
}
.gallery-item img {
    max-width: 345px!important;
    height: 498px!important;
}
.gallery__img {
  width: 100%;
  max-width: 345px;
  height: 498px;

  object-fit: cover;
  border-radius: 16px;
}
.gallery-swiper-btn-wrap {
  width: fit-content;
  margin: 32px auto 0;
}
.gallery-swiper-btn {
  background-color: var(--color-accent-secondary);
}

.sm {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sm__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: var(--color-accent-primary);
}
.sm__link svg {
  width: 25px;
  height: 25px;
}

.contacts__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contacts__box {
  position: relative;

  display: flex;
  flex-direction: column;
  padding: 50px 30px;
  height: 450px;

  color: var(--color-white);

  border-radius: 20px;
  overflow: hidden;
}
.contacts__box--desc {
  border-radius: 20px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.contacts__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.contacts__title {
  margin-bottom: 12px;
}

.contacts__location-box {
  margin-top: auto;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-link svg {
  width: 18px;
  height: 30px;

  flex-shrink: 0;
  fill: currentColor;
}
.contact-link__text {
  max-width: 200px;

  font-size: 14px;
  line-height: 125%; /* 17.5px */
  letter-spacing: -0.14px;
}
.contacts .contact-link--phone {
  padding: 18px 30px;
}

.contacts__box--form {
  position: relative;
  background-color: var(--color-accent-secondary);
}

.send-request-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.send-request-form input {
  display: flex;
  align-items: center;
  padding: 16px 24px;

  color: rgba(0, 0, 0, 0.85);

  border-radius: 8px;
  background: var(--color-white);
}
.send-request-form textarea {
  height: 117px;
  padding: 16px 24px;
  resize: none;

  color: rgba(0, 0, 0, 0.85);

  border-radius: 8px;
  background: var(--color-white);
}
.send-request-form .btn__submit {
  width: 100%;
  /* margin-top: 12px; */
}
.form__action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.request-success {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: var(--color-accent-primary);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

[data-success="true"] .request-success {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.success-contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.request-success .contact-link--phone {
  padding: 0;
}
.request-success .contact-link--phone .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background-color: var(--color-accent-secondary);
}

.contacts__msg {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
      white-space: nowrap;
}

.faq {
  padding: 80px 0 90px;
}
.faq__title {
  margin-bottom: 40px;

  text-align: center;
}
.faq__cta {
  width: 100%;
  margin: 40px auto 12px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  /* padding: 24px; */

  color: #000;

  border-radius: 16px;
  background: #fff;
}
.faq__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px;
    align-items: center;
  text-align: start;
  font-size: 22px;
  font-weight: 600;
  line-height: 111%; /* 24.42px */
}
.faq__icon {
  position: relative;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-accent-primary);
  pointer-events: none;
}
.faq__icon::before,
.faq__icon::after {
  content: "";

  display: block;
  width: 14px;
  height: 2px;

  border-radius: 1px;
  background-color: var(--color-white);
}
.faq__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__desc {
  /* padding: 24px;
  padding-top: 0; */
  margin: 24px;
  margin-top: 0px;

  color: rgba(242, 242, 242, 0.85);
}

[data-accordion-box].active.faq__item {
  color: var(--color-white);
  background-color: var(--color-accent-primary);
}
[data-accordion-box].active .faq__icon {
  background-color: rgba(255, 255, 255, 0.2);
}
[data-accordion-box].active .faq__icon::after {
  max-width: 0;
}

.service-details {
  position: relative;
  padding: 0 0 100px;
}

.service-details::before {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;

  display: block;
  width: 634px;
  height: 385px;

  background: url("/assets/images/service-details.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-details__title {
  margin-bottom: 16px;
  text-align: center;
}
.service-details__title span {
  color: var(--color-accent-secondary);
}
.service-details__text {
  margin-bottom: 32px;
  text-align: center;
}

.service-details__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 650px;
  margin: 0 auto 40px;
}
.service-details__list li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;

  color: #fff;
  line-height: 125%; /* 20px */
  text-transform: capitalize;

  border-radius: 100px;
  background: #011f5b;
}
.service-details__list li::before {
  content: "";

  display: block;
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background-color: currentColor;
}
.service-details__cta {
  width: 100%;
}

.benefits {
  padding-top: 0;
}

.benefits__box {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 50px 32px;

  border-radius: 24px;
  background: url("/assets/images/benefits.webp");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
.benefits__title {
  max-width: 560px;
  color: var(--color-white);
}

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

.benefit {
  display: flex;
  flex-direction: column;
  padding: 20px;

  border-radius: 10px;
  background-color: var(--color-white);
}

.benefit__title {
  margin-top: 32px;
  margin-bottom: 8px;

  font-size: 24px;
  font-weight: 600;
  line-height: 111%; /* 26.64px */
}

.value__title {
  margin-bottom: 40px;
  text-align: center;
}
.value__box-wrap {
  display: grid;
  gap: 16px;
}

.value-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;

  border-radius: 10px;
  background: #fff;
}
.value-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: #011f5b;
}

.value-box__title {
  color: #000;

  font-size: 24px;

  font-weight: 600;
  line-height: 111%; /* 26.64px */
}
.value-box__text {
  color: rgba(0, 0, 0, 0.86);
}

.value-box:nth-of-type(3) {
  height: 288px;

  padding: 0;
  background-color: transparent;
}
.value-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 10px;
}

.value__cta {
  margin: 40px auto 12px;
}

.modal {
  z-index: 3;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;

}

@media(max-width: 768px) {
  .modal {
      overflow-y: scroll;
}
}

.modal.isHidden {
  pointer-events: none;
  visibility: hidden;
}

.modal__backdrop {
  z-index: -1;
  opacity: 0.9;
  background: #000;
  flex-direction: column;
  flex-grow: 1;
  transition: all 0.5s;
  display: flex;
  position: fixed;
  inset: 0;
}
.modal__container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.modal.isHidden .modal__backdrop {
  opacity: 0;
}

.modal__content {
  pointer-events: none;
  flex-direction: column;
  flex-grow: 1;
  width: fit-content;
  transition: all 0.3s;
  display: flex;
  position: relative;
  z-index: 1;
  padding: 24px;
  pointer-events: all;

  color: var(--color-white);

  background-color: var(--color-accent-primary);
}

.modal__box-wrap {
  position: relative;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.modal__box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--color-accent-primary);
}

.modal--right .modal__content {
  max-width: 400px;
  margin-left: auto;
}
.isHidden.modal--right .modal__content {
  transform: translateX(101%);
}

.modal__btn-close {
  width: 32px;
  height: 32px;
  margin-left: auto;
  margin-bottom: 24px;
}

.modal__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.modal__text {
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.85);
  line-height: 125%; /* 20px */
}

.modal__text--2 {
  margin-top: auto;
}

.modal__msg {
  justify-content: flex-start;

  color: rgba(255, 255, 255, 0.85);
text-align: start;
  font-size: 12px;

  margin-bottom: 40px;
}

.modal-benefits {
  display: flex;
  flex-direction: column;

  margin-top: auto;
}
.modal-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;

  font-weight: 600;

  border-top: 1px solid rgba(255, 255, 255, 0.24);;
}

/* .modal-benefit:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);;
} */
.modal-benefit:last-child {
  padding-bottom: 0;
}
.modal__close {
  width: 100%;
  margin: 32px 0;
}

/* --- ЛОГИКА УСПЕШНОЙ ОТПРАВКИ (FIX НАСЛОЕНИЯ) --- */

/* 1. Скрываем форму и заголовок, когда data-success="true" */
[data-success="true"] .modal_review_d_form,
[data-success="true"] .modal_review_d_title {
    opacity: 0;
    pointer-events: none; /* Чтобы нельзя было кликнуть на скрытую форму */
    transition: opacity 0.3s ease;
}

/* 2. Стили для блока успеха (Modal Success Box) */
.modal__box--success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Поверх всего */
    
    /* Центрирование контента */
    display: flex;
    flex-direction: column;
    justify-content: center; /* По вертикали */
    align-items: center;     /* По горизонтали */
    text-align: center;
    
    /* Отступы, о которых ты просил */
    padding: 0 40px; 
    
    /* Скрыто по умолчанию */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* 3. Показываем блок успеха, когда data-success="true" */
[data-success="true"] .modal__box--success {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

/* Дополнительно: стили текста внутри успеха (чтобы было красиво) */
.modal__box--success .contacts__title {
    margin-bottom: 16px;
    font-size: 32px; /* Чуть крупнее */
    line-height: 1.2;
}

/* Если в блоке успеха есть ссылка/кнопка */
.modal__box--success .success-contact-box {
    margin-top: 20px;
}

.modal__box--success .contact-link--phone {
  padding: 0;
  gap: 16px;

}

.modal__box--success .contact-link--phone .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
height: 50px;

  border-radius: 50%;
  background-color: var(--color-accent-secondary);
}


@media (width < 1440px) {
  .header__nav,
  .header__actions .contact-link--phone,
  .header__actions .contact-link--location {
    display: none;
  }

  .hero__cta {
    width: 100%;
  }

  .value__cta {
    width: 100%;
  }

  .footer__nav .nav__link--dropdown {
    position: relative;
  }

  .footer__nav .nav__sublist-wrap {
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__nav [data-footer-dropdown-btn].active svg {
    transform: rotate(180deg);
  }
  .footer__nav [data-footer-dropdown-btn].active + .nav__sublist-wrap {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .hero {
    --p-top: 50px;
    display: flex;
    flex-direction: column;
    min-height: 852px;
    padding-top: calc(var(--scroll-padding-top) + var(--p-top));
    padding-bottom: 40px;
    /* min-height: var(--vh, 100vh); */
    color: var(--color-white);
   background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.35) 51.92%, #000000 94.23%), var(--bg-hero-url, url(/admin/uploads/images/bg-hero-home.webp));
    background-repeat: no-repeat;
    background-position: center, left calc(50% + 300px) center;
    background-size: cover;
}
}

@media (width >= 480px) {
  .certificates {
    justify-content: center;
    gap: 60px;
  }
}

@media (width >= 768px) {
  .hero {
    background-position: center;
  }

  .issues__list {
    --items: 2;
    --gap: 12px;
  }
}

@media (width >= 1440px) {
  html {
    --plr: 40px;
    --header-h: 64px;
  }
.hero__box.hero__msgs {
    padding-left: 15px;
}
  .container {
    width: 1440px;
  }
  .page-title {
    font-size: 50px;
  }
  .section-title {
    font-size: 45px;
  }

  .header__actions {
    display: flex;
    gap: 8px;
  }
  .header__cta {
    height: 55px;
    padding: 16px 28px;
  }
  .header__logo img {
    width: 126px;
    height: 63px;
  }
  .header .burger-menu-btn {
    display: none;
  }

  .hero__box-wrap {
    display: flex;
    justify-content: space-between;
  }
  .hero__box-wrap--2 {
    align-items: flex-end;
  }
  .hero__box--title {
    max-width: 620px;
  }
  .hero__text {
    max-width: 425px;
  }
  .hero__cta {
    margin-left: auto;
    padding: 18px 30px;
  }

  .hero__msgs {
    width: 400px;
  }

  .process__list {
    --items: 3;
  }

  .issues__list {
    --items: 4;
  }
  .issues-quote__text {
    font-size: 32px;
  }

  .maintenance {
    padding: 255px 0;
  }
  .maintenance::before {
    top: -220px;
    left: -50px;

    width: 752px;
    height: 1239px;

    background: url("/assets/images/maintenance-3.svg");
  }
  .maintenance::after {
    top: 0;
    left: -320px;

    width: 1068px;
    height: 712px;
  }

  .maintenance__box {
    width: 50%;
    margin-left: auto;
  }
  .maintenance__title {
    max-width: 440px;
  }
  .maintenance__text {
    max-width: 370px;
  }
  .maintenance__cta {
    max-width: 162px;
  }

  .process__cta {
    max-width: 218px;
  }

  .contacts__box-wrap {
    flex-direction: row;
  }
  .contacts__box {
    width: 100%;
  }

  .faq__list {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq__cta {
    max-width: 218px;
  }

  .service-details {
    padding: 0 0 160px;
  }
  .service-details::before {
    bottom: -160px;

    width: 1000px;
    height: 752px;
    /* width: 1238px;
    height: 752px; */
  }
  .service-details__title {
    max-width: 548px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-details__text {
    max-width: 658px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-details__cta {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits {
    padding-bottom: 120px;
  }

  .benefits__box {
    gap: 332px;
    padding: 40px;
  }
  .benefits__list {
    flex-direction: row;
    gap: 16px;
  }

  .process__title {
    max-width: 469px;
    margin-left: auto;
    margin-right: auto;
  }

  .value {
    padding: 120px 0;
  }

  .value__title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .value__box-wrap {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  .value-box:nth-of-type(3) {
    grid-column-start: 2;
    /* grid-column-start: 3; */
    grid-row-start: 1;
    grid-row-end: 3;
    height: 100%;
  }

  .footer__content {
    gap: 160px;
    padding: 40px;
  }
  .footer__top {
    flex-direction: row;
    gap: 40px;
  }
  .footer__nav {
    order: initial;
  }
  .footer__nav .nav__list {
    flex-direction: row;
  }
  .footer__location-box {
    flex-direction: row;
    width: fit-content;
    margin: 0 0 0 auto;
  }
  .footer__location-box .contact-link {
    flex-direction: row;
  }
  .footer__location-box .contact-link__text {
    width: 195px;
    text-align: start;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__box--created-by {
    gap: 50px;
  }
  .footer__box--policy {
    flex-direction: row;
    gap: 24px;
  }
  .copyright {
    max-width: initial;
  }

  .footer__nav .nav__link--dropdown.nav__link:hover svg {
    transform: rotate(180deg);
  }
  .footer__nav .nav__link--dropdown:hover .nav__sublist-wrap {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .contacts {
    padding: 0 0 10px;
  }

  .form__action {
    flex-direction: row;
    gap: 30px;
  }
  .contacts__msg {
    flex-shrink: 0;
  }

  .success-contact-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .success-contact-box .contact-link--phone {
    flex-direction: row-reverse;
  }

  .reviews__box {
    position: relative;
    padding: 96px 330px;
  }

  .reviews__btn-add {
    position: absolute;
    right: 40px;
    bottom: 40px;
  }

  .reviews-swiper-btn-wrap {
    width: calc(100% + (90px + 50px) * 2);
    bottom: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .gallery {
    padding: 120px 0;
  }

  .gallery__box-wrap {
    position: relative;
  }

  .gallery-swiper-wrap {
    position: static;
  }

  .gallery-swiper-btn-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .gallery__box-wrap {
    flex-direction: row;
    gap: 55px;
  }
  .gallery__box--title {
    flex-shrink: 0;
    width: 420px;
  }
}

@media(max-width: 768px) {
    .hero__box.hero__msgs {
        align-items: flex-end;
        width: -webkit-fill-available;
    }
    .swiper {
        overflow: inherit;
    }
}

/* --- СТИЛИ ДЛЯ МОДАЛКИ ОТЗЫВОВ (Review Modal) --- */

.modal_review_d_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px; /* Отступы для мобилок */
}

.modal_review_d_wrapper.isHidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal_review_d_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.modal_review_d_container {
    position: relative;
    width: 100%;
    max-width: 675px; /* Как требовалось */
    background-color: var(--color-accent-secondary, #d00c00); /* Красный фон */
    border-radius: 20px;
    padding: 40px;
    color: var(--color-white, #fff);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

/* Кнопка закрытия */
.modal_review_d_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    cursor: pointer;
    z-index: 100;
    border: none;
    transition: transform 0.2s ease;
}

.modal_review_d_close:hover {
    transform: rotate(90deg);
}

.modal_review_d_title {
font-family: Onest;
font-weight: 500;
font-style: Medium;
font-size: 45px;
leading-trim: NONE;
line-height: 102%;
letter-spacing: 0%;
margin-bottom: 30px;
}

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

/* Строка с инпутами */
.modal_review_d_row {
    display: flex;
    gap: 4px;
    flex-direction: column; /* Мобайл ферст */
}

@media (min-width: 768px) {
    .modal_review_d_row {
        flex-direction: row;
    }
}

.modal_review_d_input {
    width: 100%;
    height: 55px;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 24px;
    font-size: 16px;
    color: #000;
    outline: none;
}

.modal_review_d_input::placeholder, .modal_review_d_textarea::placeholder {
    color: rgba(0, 0, 0, 0.85);
}

/* Блок рейтинга */
.modal_review_d_rating_box {
    display: flex;
    align-items: center;
    background-color: #FFFFFFB2;
    border-radius: 8px;
    padding: 10px 24px;
    min-height: 55px;
    gap: 20px;
    transition: .3s ease;
    color: #000000D9;
    width: -webkit-fill-available;
    justify-content: flex-start;
}

.modal_review_d_rating_box.is-active {
    background-color: #FFFFFF;
}

.modal_review_d_label {
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.modal_review_d_stars {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.modal_review_d_star use {
  fill: #fcbc05;
  transition: fill .2s ease, transform .1s;
}

.modal_review_d_star:hover {
    transform: scale(1.1);
}

.modal_review_d_star:not(.active) {
    fill: rgba(255,255,255,0.3); /* Неактивная звезда */
}

/* Текстовое поле */
.modal_review_d_textarea {
    width: 100%;
    height: 140px;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    color: #000;
    resize: none;
    outline: none;
}

/* Футер формы */
.modal_review_d_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: nowrap;
    gap: 27px;
    flex-direction: row;
}

.modal_review_d_submit {
width: -webkit-fill-available;
    /* max-width: 200px; */
    height: 55px;
    border-radius: 8px;
    background-color: var(--color-accent-primary, #011f5b);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal_review_d_submit:hover {
    background-color: #00143d;
}

.modal_review_d_footer_text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.modal_review_d_footer_text span {
    font-size: 8px; /* Точка */
}

/* Успешная отправка */
.modal_review_d_success {
    text-align: center;
    padding: 40px 0;
}
.modal_review_d_success.isHidden {
    display: none;
}

.rating_box button {
    aspect-ratio: 1;
    background: #fff;
    border-radius: 8px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s ease;
    cursor: pointer;
}

.rating_box button:hover {
    background: #FCBC05;
}

.rating_box button svg path {
    transition: .15s ease; 
    fill: #FCBC05;
}

.rating_box button:hover svg path {
    fill: #FFF6DB
}

.rating_box button.is-active svg path {
    fill: #FFF6DB
}

.rating_box button.is-active {
    background: #FCBC05;    
}

/* Адаптив для маленьких экранов */
@media (max-width: 768px) {
    .modal_review_d_container {
        padding: 24px;
    }
    .modal_review_d_title {
        font-size: 28px;
    }
    .modal_review_d_rating_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-height: 40px;
        height: auto;
        font-size: 12px;
        line-height: 100%;
        padding: 10px 15px;
    }
    .rating_box button {
        min-width: 40px;
    }
    .modal_review_d_footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal_review_d_submit {
        max-width: 100%;
    }
    .modal_review_d_row {
        display: flex;
        gap: 4px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .rating_box button svg {
        width: 12px;
    }
}

/* --- FLOATING BUTTON --- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990; /* Чтобы была выше контента, но ниже модалок (обычно 9999) */
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  width: 60px;
  height: 60px;
  border-radius: 50%;
  
  background-color: #d00c00; /* Твой красный цвет */
  box-shadow: 0 4px 15px rgba(208, 12, 0, 0.4);
  cursor: pointer;
  
  /* Скрыта по умолчанию */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Состояние видимости */
.floating-cta.isVisible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-cta:hover {
  background-color: #b00a00;
  transform: scale(1.1);
}

.floating-cta__icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Анимация пульсации */
.floating-cta__pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #d00c00;
  opacity: 0;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2); /* Насколько широко расходится круг */
    opacity: 0;
  }
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
  .floating-cta {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .floating-cta__icon svg {
    width: 24px;
    height: 24px;
  }
  .hero {
      min-height: 100vh;
      height: inherit;
  }
}