* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  background: #fff;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.nav .menu {
  display: flex;
  gap: 29px;
  list-style: none;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #E8735A;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  padding: 15px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown li {
  padding: 10px 0px;
  list-style-type: none;
}

.dropdown li a {
  font-size: 14px;
  padding: 10px 20px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

/* Button */
.btn__header {
  background: #e76f51;
  color: #fff;
  padding: 10px 60px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #d85f48;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

.nav-close {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: 0.3s;
  margin-top: -2px;
}


/* Responsive */
@media (max-width: 992px) {
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 100px 30px;
    transition: 0.4s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }

  .nav-close {
    display: block;
  }

  .has-dropdown > a {
    justify-content: space-between;
  }

  .nav.active {
    right: 0;
  }

  .menu {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown {
    position: relative;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 10px 0 0 15px;
  }

  .has-dropdown.active .dropdown {
    display: block;
  }

  .dropdown li a {
    font-size: 14px;
    padding: 10px 0px;
}

  .btn__header {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header {
    padding: 20px 20px;
  }
}

.site-footer {
    background: linear-gradient(135deg, #1a1a1a, #121212);
    color: #ccc;
    padding-top: 70px;
    font-family: 'DM Sans', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-col p {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer-col p::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #e8735a;
    display: block;
    margin-top: 8px;
}

.footer-about p {
    margin: 20px 0;
    line-height: 1.6;
}

.footer-logo {
    color: #fff;
    font-size: 26px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact p a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact .mail::after {
    display: none;
}

.footer-menu a:hover {
    color: #e8735a;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: inline-flex;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #e8735a;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    margin-left: 20px;
    color: #aaa;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #e8735a;
}

.footer-contact p {
    padding-bottom: 10px;
}

.footer-social a svg {
    width: 20px;
}

/* 📱 Адаптив */

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }

    .site-footer {
      padding: 30px 25px;
    }
}

.hero {
  padding: 0px 0;
  /* background:
    radial-gradient(circle at 70% 40%, rgba(232,115,90,0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(232,115,90,0.04) 0%, transparent 60%),
    #f6f6f6; */
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: #ffe8e2;
  color: #e76f51;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .hero-badge {
    margin-top: 20px;
  }
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title span {
  color: #e76f51;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
}

@media (max-width: 900px) {
  .hero-subtitle {
      font-size: 18px;
      color: #666;
      margin-bottom: 30px;
      max-width: 100%;
      text-align: center;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-buttons__error__page {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
    margin-top: 30px;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons__error__page {
    justify-content: center;
  }
}

.btn {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #e76f51;
  color: #fff;
  cursor: pointer;
}

.btn-primary:hover {
  background: #d85d41;
}

.btn-outline {
  background: transparent;
  border: 2px solid #e76f51;
  color: #e76f51;
}

.btn-outline:hover {
  background: #e76f51;
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 20px;
}

.stat {
      box-shadow: 0 8px 23px 0 rgba(0, 0, 0, 0.04);
    background: #fff;
    padding: 16px;
    display: flex;
    border-radius: 10px;
        height: 100%;
}

.stat img {
  margin-right: 15px;
}

.stat strong {
  display: block;
  font-size: 24px;
}

.stat span {
  font-size: 14px;
  color: #777;
}

.hero-image {
  flex: 1;
  text-align: right;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 20px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .hero-buttons {
    flex-direction: column;
            padding: 0px 40px;
  }


}

.hero-badge-card svg {
  margin-right: 7px;
}

.hero-badge-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  z-index: 2;
  transition: 0.3s ease;
  display: flex;
}

/* Верхняя */
.badge-top {
  top: 80px;
  left: -20px;
  animation-delay: 0s;
}

/* Нижняя */
.badge-bottom {
  bottom: 160px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-image-mob {
  display: none;
}

@media (max-width: 992px) {
  .hero-badge-card {
    display: none;
  }

  .hero-image-mob {
        display: block;
        height: 500px;
        width: 100%;
        object-fit: contain;
    }

  .hero-image img {
    display: none;
  }

  .stat {
      box-shadow: 0 8px 23px 0 rgba(0, 0, 0, 0.04);
      background: #fff;
      padding: 16px;
      display: grid;
      border-radius: 10px;
  }

  .stat img {
    margin-right: 0px;
    margin-bottom: 10px;
}

  .stat div {
    text-align: left;
  }
}

.hero-badge-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Анимация плавного движения */

@keyframes float1 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes float2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Применяем к плашкам */

.badge-top {
  animation: float1 4s ease-in-out infinite;
}

.badge-bottom {
  animation: float2 6s ease-in-out infinite;
}

.btn__title__head {
  font-weight: 500;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  color: #e8735a;
  background: rgba(232, 115, 90, 0.1);
  border-radius: 30px;
  padding: 11px 20px;
  max-width: 140px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .btn__title__head {
    padding: 6px 15px;
}
}

.m-0-auto {
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.about {
  padding-top: 0px;
  padding-bottom: 50px;
}

.title__h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  background: linear-gradient(7deg, #e8735a 0%, #e8735a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 17px;
}

@media (max-width: 900px) {
  .title__h2 {
    font-size: 32px;
  }
}

@media (max-width: 580px) {
  .title__h2 {
    font-size: 26px;
  }
}

.animated-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 900px) {
  .animated-line {
      margin-top: 10px;
  }
}

.line {
    width: 80px;
    height: 4px;
    background: #E76F51;
    border-radius: 20px;
}

.circle {
    width: 15px;
    height: 15px;
    background: #E76F51;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Задержка для правого кружка */
.circle.right {
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.7);
        opacity: 0.7;
    }
}

.about-wrapper {
    display: flex;
    gap: 60px;
    padding-top: 40px;
}

/* LEFT */
.about-card {
    position: relative;
    border-radius: 20px;
    width: 500px;
}

.about-card img {
    width: 100%;
    height: 100%;
}

.badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
}

.badge.experience {
    bottom: 30px;
    left: 30px;
    background: #e76f51;
    color: white;
    text-align: center;
    height: 100px;
}

.badge.clean {
    top: 30px;
    left: 30px;
    display: flex;
}

.badge.clean svg {
  margin-right: 10px;
}

.experience__num {
  font-size: 32px;
  font-weight: 500;
}

.badge.creative {
    right: 30px;
    top: 50%;
    display: flex;
}

.badge.creative svg {
  margin-right: 10px;
}

/* RIGHT */
.about-right {
    flex: 1;
}

.about-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-right h3 span {
    color: #e76f51;
}

.about-right p {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Skills */
.skill {
    margin-bottom: 20px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress {
    height: 6px;
    background: #eee;
    border-radius: 10px;
}

.progress-bar {
    height: 100%;
    background: #e76f51;
    border-radius: 10px;
}

.skills-container {
    display: flex;
    gap: 40px; /* Расстояние между колонками */
    margin-top: 20px;
}

.skills-column {
    flex: 1; /* Колонки будут равной ширины */
}

/* Адаптив: на мобилках колонки станут друг под другом */
@media (max-width: 768px) {
    .skills-container {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 580px) {
  .about {
        padding-bottom: 10px;
  }
}

/* Buttons */
.buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn__about {
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
        font-weight: 600;
        cursor: pointer;
}

@media (max-width: 900px) {
  .btn__about {
        font-weight: 600;
        padding: 14px 40px;
  }
}

.btn__about.primary {
    background: #e76f51;
    color: white;
}

.btn__about.primary:hover {
  background: #d85d41;
}

.btn__about.secondary {
    border: 1px solid #333;
    color: #333;
}

@media (max-width: 992px) {

  .offer__two .container {
    padding: 0px 20px;
  }

    .about-wrapper {
        flex-direction: column;
          padding: 30px 20px;
      }



    .about-card {
        width: 100%;
    }
}

.services {
  padding-top: 40px;
  padding-bottom: 50px;
  background: linear-gradient(151deg, rgba(232, 115, 90, 0.05) 0%, rgba(232, 115, 90, 0.08) 100%);
}

.service-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-subtitle {
  background: #f4f4f4;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.service-title {
  font-size: 38px;
  color: #6c5ce7; /* Фиолетовый из макета */
  margin: 20px 0 15px;
  font-weight: 700;
}

.service-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.service-divider span {
  width: 60px;
  height: 3px;
  background: #6c5ce7;
  border-radius: 10px;
}

.service-divider::before, .service-divider::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #6c5ce7;
  border-radius: 50%;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
}

/* Card Style */
.service-card {
  background: #fdfdfd;
  padding: 25px 35px;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: #d97e63; /* Оранжевый при наведении */
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: #e76f51; /* Цвет иконок */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
}

.service-card-title {
  font-size: 21px;
  color: #1e1e1e;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 10px;
  flex-grow: 1;
}

.service-link {
  color: #d97e63;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 12px;
}

/* Responsive Logic */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }
  .service-title {
    font-size: 30px;
  }
  .service-card {
    padding: 35px 25px;
  }
}

.offer {
  padding-top: 75px;
  padding-bottom: 75px;
}

@media (max-width: 900px) {
  .offer {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .offer .container {
      padding: 0px 20px;
  }
}

.offer__bg {
  background: #e8735a;
  border-radius: 20px;
  padding: 76px;
  width: 100%;
}

@media (max-width: 900px) {
  .offer__bg {
    padding: 44px;
  }
}

@media (max-width: 580px) {
  .offer__bg {
    padding: 30px;
  }

  .offer__bg__title {
        font-weight: 700;
        font-size: 26px;
        text-align: center;
        color: #fff;
        padding-bottom: 19px;
    }

    
}

.offer__button {
  padding: 24px 28px;
  font-weight: 500;
  font-size: 20px;
  line-height: 75%;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 900px) {
  .offer__button {
    padding: 16px 21px;
    font-weight: 500;
    font-size: 16px;
    line-height: 75%;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}
}

.offer__button:hover {
  background: #e8735a;
}

.offer__bg__title {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #fff;
  padding-bottom: 19px;
}



.offer__bg__subtitle {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  padding-bottom: 40px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .offer__bg__title {
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    color: #fff;
    padding-bottom: 19px;
}



.offer__bg__subtitle {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding-bottom: 25px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}


}

@media (max-width: 580px) {
  .offer__bg__title {
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    color: #fff;
    padding-bottom: 19px;
}
}

.gap-20 {
  gap: 20px;
}

.justify-content-center {
  justify-content: center;
}

.d-flex {
  display: flex;
}

@media (max-width: 580px) {
  .d-grid-mob {
      display: grid;
    }
}

.projects {
        padding-bottom: 40px;
}

.slider {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}



.slides{
  display:flex;
  gap:20px;
  transition: transform .6s ease;
  will-change: transform;
  margin-top: 30px;
}

.slide {
  
    padding-top: 0px;
    padding-bottom: 20px;
    box-sizing: border-box;
    background: #fafafad4;
border-radius: 19px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.slide .link__work {
  padding-top: 20px;
}

.slide p a {
padding-left: 20px;
    color: #E8735A;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.slide{ flex: 0 0 calc((100% - 40px) / 3); } /* 3 карточки -> 2 gap = 40px */

@media (max-width: 1200px){
  .slide{ flex: 0 0 calc((100% - 20px) / 2); } /* ✅ 2 карточки -> 1 gap = 20px */
}

@media (max-width: 992px){
  .slide{ flex: 0 0 calc((100% - 20px) / 2); }
  .slides{
    padding: 0px 20px;
  }

  .projects {
        padding-bottom: 20px;
  }
}

@media (max-width: 600px){
  .slide{ flex: 0 0 100%; }
}

/* dots */

.dots {
    text-align: center;
    margin-top: 25px;
}

.dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 6px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dots span.active {
    background: #E8735A;
}

.slide h3 {
  font-weight: 700;
font-size: 19px;
line-height: 120%;
color: #1e1e1e;
padding-bottom: 15px;
padding-top: 21px;
padding-left: 20px;
}

.slide__text {
  font-weight: 400;
font-size: 15px;
line-height: 170%;
color: rgba(33, 37, 41, 0.75);
padding-bottom: 20px;
padding-left: 20px;
}

.slide div {
  padding-left: 20px;
}

.slide div span {
  font-weight: 500;
font-size: 12px;
line-height: 170%;
color: #e8735a;
background: rgba(232, 115, 90, 0.1);
padding: 8px 11px; 
border-radius: 100px;
}

.gap-10 {
  gap: 10px;
}

.process__block {
  padding-top: 40px;
}

.process__block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 60px;
  padding-top: 60px;
}

.process__block__grid__block {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.1);
  background: #e8735a;
  padding: 25px 25px 25px 80px;
  display: flex;
  align-items: start;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.process__block__grid__block.show {
    opacity: 1;
    transform: translateY(0);
}

.process__block__grid__block__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  padding-bottom: 17px;
}

.process__block__grid__block__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #fff;
}

.process__block__grid__block__span {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px 0px 20px 0px;
  background-color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #e8735a;
  padding: 10px 15px;
}

.container__process__block {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

@media (max-width: 900px) {
  .process__block__grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process__block__grid__block {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.1);
    background: #e8735a;
    padding: 25px 25px 25px 70px;
    display: flex;
    align-items: start;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.process__block__grid__block__title {
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    color: #fff;
    padding-bottom: 17px;
}

.process__block__grid {
  padding-bottom: 25px;
}
}

@media (max-width: 700px) {
  .process__block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.choose__block {
  padding: 40px 0px;
}

.container__choose__block {
  max-width: 1200px;
  width: 100%;
}

.choose__block__left__block {
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 20px;
  padding: 65px 50px;
}




.choose__block__left__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 40px;
}



.why-list {
    position: relative;
}

.why-item {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 60px;
}

.why-item:last-child {
    padding-bottom: 0;
}

/* MARKER BLOCK */
.why-marker {
    position: relative;
    width: 24px;
    flex-shrink: 0;
}

/* CIRCLE */
.why-marker::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #E8735A;
    border-radius: 50%;
    z-index: 2;
}

/* LINE */
.why-marker::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: #E8735A;
    margin-top: 3px;
    border-radius: 100px;
    margin-bottom: 3px;
}

/* убрать линию у последнего */
.why-item:last-child .why-marker::before {
  display: none;
}

/* TEXT */
.why-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.why-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

.choose__block__right__block {
    position: sticky;
    top: 86px; /* отступ от хедера */
    height: fit-content;
}

.choose__block__right__block img {
  max-width: 100%;
  width: auto;
}

@media (max-width: 900px) {
  .choose__block__left__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 20px;
}

@media (max-width: 580px) {
  .choose__block__left__right {
    grid-template-columns: 1fr;
  }
}

.why-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
}

.why-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.choose__block__left__block {
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
}
}

@media (max-width: 580px) {
  .choose__block__right__block img {
    max-width: 100%;
    width: auto;
    display: none;
}
}

.offer__two {
    padding-bottom: 20px;
}

.reviews__block {
  padding: 40px 0px;
}

.container__reviews__block {
  max-width: 1200px;
  width: 100%;
}

.reviews__block__cart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 40px;
}

.reviews__block__cart__single {
  background: #fff;
  position: relative;
  border-radius: 30px;
  padding: 20px 27px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
}

.triangle {
    position: absolute;
    bottom: -26px;
    left: 50px;
    z-index: 2;
}

.reviews__block__cart__single p {
  font-weight: 400;
font-size: 15px;
line-height: 170%;
color: #2b2b2b;
}

.reviews__block__cart__single__name__info__name__circle {
  background: #D7ECFF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
font-size: 22px;
text-align: center;
color: #e8735a;
width: 60px;
height: 60px;
}

.reviews__block__cart__single__name__info {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.reviews__block__cart__single__name__info__text__name {
  font-weight: 700;
font-size: 16px;
line-height: 120%;
color: #E8735A;
padding-bottom: 7px;
}

.reviews__block__cart__single__name__info__text__subname {
  font-weight: 400;
font-size: 13px;
line-height: 170%;
color: #2b2b2b;
}

.reviews__block__cart__single__name__info__text {
  padding-left: 15px;
}

@media (max-width: 900px) {
  .reviews__block__cart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 20px;
}
}

@media (max-width: 580px) {
  .reviews__block__cart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
}
}

.logo__block {
  width: 100%;
  background: #E8735A;
  position: relative;
}

.container__logo__block {
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
}

.logo__block__bg {
  padding: 33px 0;
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
}

@media (max-width: 580px) {
  .logo__block__bg {
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
}
}

/* контейнер для движения */
.logo__block.moving .container__logo__block {
  display: flex;
}

.logo__block.moving .logo__block__bg {
  animation: scrollLogos 30s linear infinite; 
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.container__logo__block {
  position: relative;
  overflow: hidden;
}

.container__logo__block::before,
.container__logo__block::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.container__logo__block::before {
  left: 0;
  background: linear-gradient(to right, #E8735A 0%, rgba(232,115,90,0) 100%);
}

.container__logo__block::after {
  right: 0;
  background: linear-gradient(to left, #E8735A 0%, rgba(232,115,90,0) 100%);
}

.blog__block {
  padding: 40px 0px;
}

.container__blog__block {
  max-width: 1200px;
  width: 100%;
}

.blog__block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 30px;
}

.blog__block__grid__a {
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 -114px 30px 0 rgba(0, 0, 0, 0.65), 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 23px;
  height: 278px;
  display: grid;
  align-content: end;
}

.blog__block__grid__a__h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 144%;
  color: #fff;
}

.blog__block__grid__a__p {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
}

@media (max-width: 900px) {
  .blog__block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 30px;
  }

  .blog__block {
    padding: 40px 20px;
  }
}

@media (max-width: 525px) {
  .blog__block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 30px;
  }

  .blog__block {
    padding: 40px 20px;
  }
}

.faq__block {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.container__faq__block {
  padding: 40px 0px;
}

@media (max-width: 580px) {
  .container__faq__block {
  padding: 30px 20px;
}
}

.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #E8735A;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 24px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 100%;
  padding-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item__block {
  padding-top: 30px;
}

@media (max-width: 900px) {
  .faq-item__block {
  padding: 30px 20px;
  }

}

@media (max-width: 580px) {
  .faq-item__block {
  padding: 30px 0px;
  }

}

.contact__block {
  padding: 40px 0px;
}

.container__contact__block {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact__block__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__block__blocks__left__h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 118%;
  color: #3d3d3d;
  padding-bottom: 20px;
}

.contact__block__blocks__left__h2 span {
  color: #e8735a;
}

.contact__block__blocks__left__p {
  font-weight: 400;
font-size: 17px;
line-height: 188%;
color: #6b6b6b;
padding-bottom: 50px;
}

.contact__block__blocks__left__span {
  background: #E8735A;
  border-radius: 10px;
  display: grid;
  align-content: center;
  align-items: center;
  padding: 12px;
  width: 48px;
  margin-right: 16px;
}

.contact__block__blocks__left__contact__block {
  display: flex;
   align-items: center;
   padding-bottom: 30px;
}

.contact__block__blocks__left__contact__block__title {
  font-weight: 700;
font-size: 15px;
line-height: 183%;
color: #3d3d3d;
padding-bottom: 4px;
}

.contact__block__blocks__left__contact__block__subtitle a {
font-weight: 400;
font-size: 16px;
line-height: 176%;
color: #3d3d3d;
text-decoration: none;
}

.contact__block__blocks__right__form {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 1px 3px 0 rgba(61, 61, 61, 0.06);
background: #fefbf6;
padding: 41px;
border: 1px solid #ede9e3;
border-radius: 40px;
}

.contact__block__blocks__right__form__input label {
  font-weight: 700;
font-size: 11px;
line-height: 168%;
color: #5a5a5a;
}

.contact__block__blocks__right__form__input input {
  border: 1px solid #d4d0cb;
border-radius: 16px;
padding: 17px 25px;
width: 526px;
height: 58px;
background: #fff;
    margin-top: 9px;

}

.contact__block__blocks__right__form__input textarea {
  border: 1px solid #d4d0cb;
border-radius: 16px;
padding: 17px 25px;
width: 526px;
height: 78px;
background: #fff;
    margin-top: 9px;

}

.contact__block__blocks__right__form__input {
  padding-bottom: 24px;
}

.contact__block__blocks__right__form button {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 4px 16px 0 rgba(61, 61, 61, 0.08);
background: #e8735a;
font-weight: 700;
font-size: 13px;
line-height: 176%;
text-align: center;
color: #fff;
width: 100%;
border-radius: 16px;
padding: 16px 0px;
border: none;
}

@media (max-width: 900px) {
  .contact__block__blocks {
    padding: 0px 20px;
  }

  .contact__block__blocks__right__form {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 1px 3px 0 rgba(61, 61, 61, 0.06);
    background: #fefbf6;
    padding: 20px;
    border: 1px solid #ede9e3;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
}

.contact__block__blocks__right__form__input input {
    border: 1px solid #d4d0cb;
    border-radius: 16px;
    padding: 17px 25px;
    width: 100%;
    height: 45px;
    background: #fff;
    margin-top: 9px;
}

.contact__block__blocks__right__form__input textarea {
    border: 1px solid #d4d0cb;
    border-radius: 16px;
    padding: 17px 25px;
    width: 100%;
    height: 58px;
    background: #fff;
    margin-top: 9px;
}

.contact__block__blocks__left__p {
    font-weight: 400;
    font-size: 15px;
    line-height: 188%;
    color: #6b6b6b;
    padding-bottom: 20px;
}

.contact__block__blocks__left__h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 118%;
    color: #3d3d3d;
    padding-bottom: 20px;
}
}

@media (max-width: 900px) {
  .contact__block__blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
}

.contact__block {
    padding: 0px 0px;
}

.contact__block__blocks__left__h2 {
        font-weight: 700;
        font-size: 26px;
        line-height: 118%;
        color: #3d3d3d;
        padding-bottom: 20px;
    }
}

.faq-answer ul {
      margin-left: 15px;
    padding-bottom: 20px;
}

.faq-answer ul li {
      margin: 0;
    padding-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.error__page__container {
  max-width: 1200px;
  width: 100%;
}

.error__page {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error__page__h1 {
  text-align: center;
  font-size: 45px;
  padding-bottom: 30px;
  color: #E8735A;
}

.error__page__p {
  text-align: center;
  font-size: 18px;
  max-width: 600px;
  width: 100%;
  line-height: 150%;
  margin: 0 auto;
}

@media (max-width: 580px) {
  .error__page__h1 {
      text-align: center;
      font-size: 30px;
      padding-bottom: 30px;
      color: #E8735A;
  }

  .error__page {
      padding-top: 100px;
      padding-bottom: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-left: 20px;
      padding-right: 20px;
  }

  .hero-buttons__error__page {
    display: grid;
  }
}

.pop__up {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.pop__up__book {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.pop__up__form {
  padding: 38px 32px;
  background-color: #fff;
  border-radius: 20px;
  max-width: 845px;
  position: relative;
}

.close__svg {
  position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.pop__up__form__title {
  font-weight: 600;
font-size: 26px;
text-align: center;
color: #080808;
padding-bottom: 22px;
}

.pop__up__form__text {
  font-weight: 400;
font-size: 18px;
line-height: 144%;
text-align: center;
color: #080808;
padding-bottom: 30px;
}

.pop__up__form__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact__block__blocks__right__form__input__popap input {
    border: 1px solid #d4d0cb;
    border-radius: 16px;
    padding: 17px 25px;
    width: 100%;
    height: 48px;
    background: #fff;
    margin-top: 9px;
}

.contact__block__blocks__right__form__input__popap select {
    border: 1px solid #d4d0cb;
    border-radius: 16px;
    padding: 13.2px 25px;
    width: 100%;
    background: #fff;
    margin-top: 9px;
    font-size: 14px;
    appearance: none;
}

.contact__block__blocks__right__form__input__popap input[type="date"] {
    border: 1px solid #d4d0cb;
    border-radius: 16px;
    padding: 17px 25px;
    width: 100%;
    background: #fff;
    margin-top: 9px;
    font-size: 14px;
    appearance: none;
}

.contact__block__blocks__right__form__input__popap select {
  color: #757575;
}

.contact__block__blocks__right__form__input__popap input[type="date"] {
  color: #757575;
}

.select-field {
    position: relative;
}

.select-field::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url('/wp-content/uploads/2026/03/arr.svg') no-repeat center;
    background-size: contain;
    pointer-events: none;
        top: 33px;
}

.date-field {
    position: relative;
}

.date-field::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url('/wp-content/uploads/2026/03/cal.svg') no-repeat center;
    background-size: contain;
    pointer-events: none;
    top: 33px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
}

.pop__up__form__inputs__button {
    background: #e76f51;
  color: #fff;
  padding: 15px 55px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  border: none;
  margin-top: 22px;
}

@media (max-width: 580px) {
  .pop__up__form__inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pop__up {
    padding: 20px 20px;
  }

  .pop__up__form__text {
      font-weight: 400;
      font-size: 14px;
      line-height: 144%;
      text-align: center;
      color: #080808;
      padding-bottom: 20px;
  }

  .pop__up__form__title {
      font-weight: 600;
      font-size: 20px;
      text-align: center;
      color: #080808;
      padding-bottom: 22px;
  }

  .contact__block__blocks__right__form__input__popap input {
      border: 1px solid #d4d0cb;
      border-radius: 16px;
      padding: 12px 25px;
      width: 100%;
      height: 45px;
      background: #fff;
      margin-top: 9px;
  }

  .pop__up__form {
      padding: 40px 17px;
      background-color: #fff;
      border-radius: 20px;
      max-width: 845px;
          max-height: 570px;
      overflow: auto;
  }

  .contact__block__blocks__right__form__input__popap select {
      border: 1px solid #d4d0cb;
      border-radius: 16px;
      padding: 13.2px 25px;
      width: 100%;
      background: #fff;
      margin-top: 9px;
      font-size: 13px;
      appearance: none;
        color: #757575;
  }

  .contact__block__blocks__right__form__input__popap input[type="date"] {
      border: 1px solid #d4d0cb;
      border-radius: 16px;
      padding: 17px 25px;
      width: 100%;
      background: #fff;
      margin-top: 9px;
      font-size: 13px;
      appearance: none;
        color: #757575;
  }

  .contact__block__blocks__right__form__input__popap input {
    font-size: 13px;
    color: #757575;
  }

  .pop__up__book {
        padding: 20px 20px;
    }

}