body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  border-bottom: 1px solid #eee;
}

.header__top {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #00142c;
}

.header__logo img {
  height: 32px;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__info {
  color: #999;
  font-size: 14px;
}

.header__info i {
  color: #ff3300;
  margin-right: 5px;
}

.header__quote {
  border: 1px solid #ff3300;
  padding: 10px 20px;
  text-decoration: none;
  color: #ff3300;
  border-radius: 3px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Навигация */
.navbar {
  max-width: 1160px;
  margin: 0 auto;

  padding: 0 20px;
}

.navbar__menu {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 10px 0;
}

.navbar__menu li a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .header__contacts {
    display: none;
  }

  .navbar {
    display: none;
    flex-direction: column;
  }

  .navbar.active {
    display: flex;
  }

  .navbar__menu {
    flex-direction: column;
    gap: 10px;
  }
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

body.header-fixed {
  padding-top: 100px;
  /* высота хедера (настраивай под свою) */
}

.hero {
  background-color: #7a8896;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.hero__title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero__btn {
  display: inline-block;
  background-color: #ff2e00;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero__btn:hover {
  background-color: #e02900;
}

.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 90px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.services__item {
  max-width: 300px;
  margin: 20px;
}

.services__icon {
  font-size: 48px;
  color: #ff3d00;
  margin-bottom: 15px;
}

.services__icon--live {
  font-size: 18px;
  color: #ff3d00;
  border: 2px solid #ff3d00;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.services__title {
  font-size: 20px;
  color: #001835;
  margin-bottom: 10px;
}

.services__text {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 15px;
}

.services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;

  justify-content: center;
}

.services-slider {
  padding: 60px 20px;
  background-color: #f5fafd;
  text-align: center;
}

.services-slider__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #001835;
}

.services-slider__wrapper {
  display: flex;
}

.services-slider__item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.services-slider__image {
  width: 100%;
  object-fit: cover;
  height: 250px;
  display: block;
}

.services-slider__heading {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #001835;
}

.services-slider__text {
  color: #777;
  font-size: 15px;
  padding: 0 20px;
}

.services-slider__arrow {
  color: #ff3d00;
}

.secure-block {
  background-color: #45596b;
  padding: 60px 20px;
  color: #fff;
}

.secure-block__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.secure-block__content {
  flex: 1 1 60%;
}

.secure-block__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.secure-block__text {
  font-size: 16px;
  color: #e0e0e0;
  max-width: 600px;
}

.secure-block__button {
  background-color: #ff3d0a;
  color: #fff;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s;
}

.secure-block__button:hover {
  background-color: #e33400;
}

.secure-block {
  background-color: #45596b;
  padding: 60px 20px;
  color: #fff;
}

.secure-block__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.secure-block__content {
  flex: 1 1 60%;
}

.secure-block__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.secure-block__text {
  font-size: 16px;
  color: #e0e0e0;
  max-width: 600px;
}

.secure-block__button {
  background-color: #ff3d0a;
  color: #fff;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s;
}

.secure-block__button:hover {
  background-color: #e33400;
}

.choose-us {
  padding: 60px 20px;
  background-color: #fff;
}

.choose-us__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.choose-us__image-wrapper {
  position: relative;
  flex: 1 1 45%;
  border-left: 20px solid #ff3d0a;

}

.choose-us__image {
  display: block;
  width: 100%;
  height: auto;
}

.choose-us__content {
  flex: 1 1 50%;
}

.choose-us__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.choose-us__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  max-width: 500px;
}

.choose-us__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.choose-us__item {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.choose-us__icon {
  color: #ff3d0a;
  font-weight: bold;
  margin-right: 10px;
}

.choose-us__btn {
  display: inline-block;
  padding: 12px 28px;
  color: #ff3d0a;
  border: 1px solid #ff3d0a;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: 600;
}

.choose-us__btn:hover {
  background: #ff3d0a;
  color: #fff;
}

.choose-us {
  padding: 60px 20px;
  background-color: #fff;
}

.choose-us__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.choose-us__image-wrapper {
  position: relative;
  flex: 1 1 45%;
  border-left: 5px solid #ff3d0a;

}

.choose-us__image {
  display: block;
  width: 100%;
  height: auto;
}

.choose-us__content {
  flex: 1 1 50%;
}

.choose-us__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.choose-us__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  max-width: 500px;
}

.choose-us__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.choose-us__item {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.choose-us__icon {
  color: #ff3d0a;
  font-weight: bold;
  margin-right: 10px;
}

.choose-us__btn {
  display: inline-block;
  padding: 12px 28px;
  color: #ff3d0a;
  border: 1px solid #ff3d0a;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: 600;
}

.choose-us__btn:hover {
  background: #ff3d0a;
  color: #fff;
}

.stats {
  background-color: #fff4f4;
  padding: 60px 20px;
}

.stats__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.stats__item {
  flex: 1 1 200px;
}

.stats__number {
  font-size: 42px;
  font-weight: 700;
  color: #ff3d0a;
  margin-bottom: 10px;
}

.stats__label {
  font-size: 16px;
  color: #1d2c42;
}

@media (max-width: 768px) {
  .stats__container {
    flex-direction: column;
    align-items: center;
  }

  .stats__item {
    width: 100%;
  }
}

.testimonial {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testimonial__quote {
  font-size: 64px;
  color: #ff3d0a;
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 20px;
  color: #1d2c42;
  margin-bottom: 40px;
  line-height: 1.6;
}

.testimonial__author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__info {
  text-align: left;
}

.testimonial__name {
  font-weight: 600;
  color: #1d2c42;
}

.testimonial__position {
  font-size: 14px;
  color: #7a7a7a;
}

.testimonial__pagination {
  margin-top: 0;
  top: calc(100% - 17px);
}

.swiper-pagination-bullet {
  background: #fddcd4;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff3d0a;
}

.estimate {
  background-color: #230e0e;
  color: #fff;
  padding: 80px 20px;
}

.estimate__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
}

.estimate__title {
  font-size: 32px;
  margin-bottom: 20px;
}

.estimate__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #d1d1d1;
}

.estimate__phone {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff3d0a;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.estimate__phone:hover {
  background-color: #e62d00;
}

.estimate__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 478px;
}

.estimate__row {
  display: flex;
  gap: 20px;
}

.estimate__input,
.estimate__select,
.estimate__textarea {
  flex: 1;
  padding: 15px;
  background: transparent;
  border: 1px solid #3d5a73;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
}

.estimate__textarea {
  resize: vertical;
  min-height: 100px;
}

.estimate__submit {
  padding: 15px;
  border: 1px solid #ff3d0a;
  background: transparent;
  color: #ff3d0a;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.estimate__submit:hover {
  background: #ff3d0a;
  color: #fff;
}

/* Адаптив */
@media (max-width: 768px) {
  .estimate__container {
    grid-template-columns: 1fr;
  }

  .estimate__row {
    flex-direction: column;
  }
}

.footer {
  background-color: #fff7f7;
  padding: 40px 20px 60px;
  font-family: sans-serif;
  color: #1a1a1a;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 40px;
}

.footer__brand {
  font-size: 24px;
  font-weight: bold;
  color: #0b2239;
}

.footer__contacts {
  display: flex;
  gap: 40px;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer__contact-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #0b2239;
}

.footer__icon {
  font-size: 44px;
  color: #ff3d0a;
  margin-top: 4px;
}

.footer__socials a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  background-color: #eee;
  color: #333;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.footer__socials a:hover {
  background-color: #ff3d0a;
  color: #fff;
}

.footer__main {
  margin-top: 40px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer__title {
  font-weight: bold;
  margin-bottom: 15px;
  color: #0b2239;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  text-decoration: none;
  color: #4b4b4b;
  transition: 0.3s;
}

.footer__list a:hover {
  color: #ff3d0a;
}

.footer__form {
  display: flex;
  max-width: 320px;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 50px;
  overflow: hidden;
}

.footer__input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  outline: none;
}

.footer__button {
  background-color: #ff3d0a;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.footer__button:hover {
  background-color: #e22e00;
}

.footer__text {
  font-size: 13px;
  color: #666;
  max-width: 300px;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 20px;
  }

  .footer__form {
    flex-direction: column;
    border-radius: 8px;
  }

  .footer__input,
  .footer__button {
    width: 100%;
    border-radius: 0;
  }

  .footer__button {
    border-radius: 0 0 8px 8px;
  }
}

.serv .services-slider__wrapper {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}
.servic {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  color: #2f3c4e;
}

.servic__container {
  max-width: 960px;
  margin: 0 auto;
}

.servic__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.servic__text {
  margin-bottom: 40px;
}

.servic__paragraph {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #636c79;
}

.servic__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  object-fit: cover;
}
.choose-us__container + .choose-us__container{
  margin-top: 50px;
}

.choose-us__container + .choose-us__container .choose-us__description{
  padding: 20px;
}
.blog {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.blog__container {
  max-width: 960px;
  margin: 0 auto;
}

.blog__item {
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog__image {
  position: relative;
}

.blog__image img {
  width: 100%;
  display: block;
  height: 350px;
  object-fit: cover;
}

.blog__date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff3c00;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 2px;
}

.blog__day {
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.blog__month {
  font-size: 14px;
}

.blog__content {
  padding: 25px;
}

.blog__title {
  font-size: 18px;
  font-weight: 600;
  color: #1c2b36;
  margin-bottom: 10px;
}

.blog__text {
  font-size: 14px;
  line-height: 1.7;
  color: #636c79;
  margin-bottom: 15px;
}

.blog__meta {
  font-size: 13px;
  color: #999;
}

.blog__meta span {
  margin-right: 20px;
}
.post {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
}

.post__container {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.post__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 25px;
}

.post__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f1c2e;
  margin-bottom: 10px;
}

.post__meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
}

.post__meta span {
  margin-right: 20px;
}

.post__text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.post__quote {
  background: #f2f6f9;
  border-left: 4px solid #ccc;
  padding: 15px 20px;
  margin: 30px 0;
  font-style: italic;
  color: #444;
}
.contact {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.contact__form {
  flex: 1 1 60%;
}

.contact__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact__form-fields textarea,
.contact__input {
  width: auto;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #e2e2e2;
  background: transparent;
  font-size: 15px;
}

.contact__row {
  display: flex;
  gap: 20px;
}

.contact__row .contact__input {
  flex: 1;
}

.contact__button {
  padding: 12px 35px;
  border: 1px solid #ff4a17;
  background: transparent;
  color: #ff4a17;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact__button:hover {
  background: #ff4a17;
  color: #fff;
}

.contact__info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 15px;
  color: #333;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact__info-item i {
  font-size: 20px;
  color: #888;
  margin-top: 5px;
}
.contact__container{
  max-width: 1000px;
  margin: 0 auto;
}
form.contact__form-fields {
  display: flex
;
  flex-direction: column;
}
.t{
  padding: 90px 0;
}
.t li{
  margin-bottom: 10px;
}
.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 20px;
}
.faq__title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}
.faq__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.faq__question {
  width: 100%;
  font-size: 16px;
  text-align: left;
  padding: 15px;
  font-weight: bold;
  border: none;
  background: none;
  cursor: pointer;
}
.faq__answer {
  display: none;
  padding: 0 15px 15px;
  color: #555;
}
.faq__item.active .faq__answer {
  display: block;
}
.test {
  padding: 90px 20px;
  background-color: #f7f7f7;
}
.test__title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}
.test__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.test__item {
  background: #fff;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}
.test__text {
  font-style: italic;
  margin-bottom: 10px;
}
.test__author {
  font-weight: bold;
  color: #333;
}
.who {
  padding: 60px 20px;
  background: #fff;
}
.who__container {
  display: flex;
  max-width: 1140px;
margin: 0 auto;
  gap: 40px;
  align-items: center;
}
.who__image{
  flex: 1;
}
.who__image img {
  max-width: 100%;
  border-radius: 10px;
}
.who__content {
  max-width: 500px;
}
.who__title {
  font-size: 28px;
  margin-bottom: 15px;
}
.who__text {
  margin-bottom: 20px;
  color: #444;
}
.who__list {
  list-style: none;
  padding: 0;
}
.who__item {
  margin-bottom: 10px;
  color: #333;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  z-index: 9999;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
  flex: 1 1 auto;
}

.cookie-banner a {
  color: #007bff;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #e64a19;
}
@media screen and (max-width:768px) {
  .services__items {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 21px;
    justify-content: center;
}
.serv .services-slider__wrapper {
  display: grid
;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
.contact__row {
  display: flex
;
  gap: 20px;
  flex-direction: column;
}
.footer__list{
  margin-top: 0!important;
}
.footer__columns {
  display: grid
;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0px;
}
.who__container {
  display: flex
;
  max-width: 1140px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  flex-direction: column;
}
}
.header__top {
  display: flex
;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
}
