@charset "UTF-8";
.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: #182534;
  background-color: #fff;
}

.accent {
  color: #f77864;
}

.heading {
  text-align: center;
}

.btn {
  display: inline-flex;
  gap: 15px;
  padding: 0.6em 1.3em;
  border-radius: 50px;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #fff;
}
.btn a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn img,
.btn svg {
  height: 1.2em;
  width: auto;
}
.btn--cta {
  background: linear-gradient(90deg, #fdb757 0%, #f7a376 100%);
}
.btn--call {
  background: linear-gradient(90deg, #49d286 0%, #50b67d 100%);
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  background-color: #f1692e;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn--submit {
  background: linear-gradient(90deg, #49d286 0%, #50b67d 100%);
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 0 0;
}
.section__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 34px;
  box-sizing: border-box;
}
.section__container--narrow {
  max-width: 1140px;
}
.section__container--wide {
  padding: 0;
}
.section--gradient {
  position: relative;
}
.section--gradient::before, .section--gradient::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  z-index: -1;
}
.section__content-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --------- Шаги -------- */
.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 0;
}

.step {
  flex: 1;
  text-align: center;
  gap: 15px;
  background: #f0f8ef;
  padding: 20px 40px 60px 40px;
}
.step__number {
  font-size: 150px;
  font-weight: 900;
  color: rgba(78, 188, 136, 0.35);
  line-height: 1;
}
.step__title {
  font-size: 23px;
  font-weight: 700;
}
.step__text {
  font-size: 21px;
  font-weight: 300;
  color: #182534;
}
.step img {
  max-width: 80px;
  padding-left: 10px;
}

.gradient--yellow-top-left::before {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(237, 190, 110, 0.4) 0%, rgba(255, 255, 255, 0) 20%, transparent 100%);
}

.gradient--green-bottom-right::after {
  bottom: 0;
  right: 0;
  background: linear-gradient(-45deg, rgba(111, 200, 151, 0.4) 0%, rgba(255, 255, 255, 0) 20%, transparent 100%);
}

.gradient--green-top-right::before {
  top: 0;
  right: 0;
  background: linear-gradient(-135deg, rgba(111, 200, 151, 0.4) 0%, rgba(255, 255, 255, 0) 20%, transparent 100%);
}

.gradient--yellow-bottom-left::after {
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(237, 190, 110, 0.4) 0%, rgba(255, 255, 255, 0) 20%, transparent 100%);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.header__call-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__call-text {
  font-size: 20px;
  font-weight: 500;
}

.hero {
  padding-bottom: 80px;
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-top: 50px;
}
.hero__text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.hero__heading {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.4;
}
.hero__subheading {
  font-weight: 600;
  font-size: 26px;
  padding: 0;
  padding-bottom: 20px;
}
.hero__image-block {
  flex: 0 0 600px;
  display: flex;
  justify-content: flex-end;
}
.hero__image-container {
  position: relative;
  width: 80vw;
  max-width: 500px;
  height: 80vw;
  max-height: 500px;
  border-radius: 50%;
  overflow: hidden;
}
.hero__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.hero__image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #fdb757 0%, #f7a376 100%);
  border-radius: 50%;
  padding: 30px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quotation {
  display: flex;
  align-items: start;
  gap: 20px;
  border-top: 1px solid rgba(29, 43, 69, 0.18); /* тонкая линия */
  padding-top: 20px;
}
.quotation__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.quotation__author {
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 1140px) {
  .hero__content {
    gap: 10px;
  }
  .hero__image-block {
    flex: 0 0 450px;
  }
  .hero__heading {
    font-size: 32px;
  }
  .hero__subheading {
    font-size: 24px;
  }
}
/* --------- Agencies Carousel -------- */
.agencies-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -20px;
  padding: 80px;
}

.agencies-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px 20px;
}
.agencies-carousel::-webkit-scrollbar {
  display: none;
}
.agencies-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.agency {
  flex-shrink: 0;
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  scroll-snap-align: center;
}
.agency img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  color: #182534;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.carousel-arrow:hover {
  opacity: 1;
}
.carousel-arrow.left {
  left: 10px;
}
.carousel-arrow.right {
  right: 10px;
}
.carousel-arrow svg {
  width: 30px;
  height: 30px;
}

/* --------- Form Block -------- */
.form-block {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
}
.form-block__description {
  grid-column: 1/span 7;
  grid-row: 1;
  background: #f0f8ef;
  padding-left: 150px;
  padding-right: 150px;
  padding: 50px 150px;
}
.form-block__description h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #182534;
}
.form-block__description p,
.form-block__description li {
  font-size: 20px;
  margin: 10px 0;
}
.form-block__description ul {
  list-style-type: none;
  padding: 0;
}
.form-block__description ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.form-block__description img {
  width: 20px;
  height: 20px;
}
.form-block__form {
  grid-column: 7/12;
  grid-row: 1;
  background: linear-gradient(90deg, #fdb757, #f7a376);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.form {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.form fieldset legend {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #182534;
}
.form .form__row {
  display: flex;
  gap: 20px;
}
.form .form__row label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  color: #182534;
}
.form .form__row label.full-width {
  flex: 1 1 100%;
}
.form input,
.form select,
.form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
.form textarea {
  resize: vertical;
}
.form__button {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero {
    padding-bottom: 30px;
  }
  .hero__content {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .hero__text-block {
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-top: 0;
  }
  .hero__image-block {
    display: block;
    width: 100%;
    order: -1;
    margin-bottom: 30px;
    flex: 0 0 auto;
  }
  .hero .hero__image-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .hero .hero__image-container::before {
    padding: 15px;
  }
  .hero .quotation {
    margin-top: 20px;
  }
  .hero .btn {
    padding: 0.5em 1em;
    font-size: 18px;
  }
  .hero__heading {
    font-size: 28px;
    margin-top: 0;
  }
  .hero__subheading {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .section--form-background::before {
    display: none;
  }
  .form-block {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    padding: 0 20px 50px 20px;
  }
  .form-block__description {
    grid-column: 1;
    grid-row: 1;
    background-color: #f0f8ef;
    padding: 30px;
  }
  .form-block__form {
    grid-column: 1;
    grid-row: 2;
    margin-top: -50px;
    border-radius: 10px;
  }
}
@media (max-width: 1070px) {
  .hero {
    padding-bottom: 30px;
  }
  .hero__content {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .hero__text-block {
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-top: 0;
  }
  .hero__image-block {
    display: block;
    width: 100%;
    order: -1;
    margin-bottom: 30px;
    flex: 0 0 auto;
  }
  .hero .hero__image-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .hero .hero__image-container::before {
    padding: 15px;
  }
  .hero .quotation {
    margin-top: 20px;
  }
  .hero .btn {
    padding: 0.5em 1em;
    font-size: 18px;
  }
  .hero__heading {
    font-size: 28px;
    margin-top: 0;
  }
  .hero__subheading {
    font-size: 20px;
  }
  .section--form-background::before {
    display: none;
  }
  .form-block {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    padding: 0 20px 50px 20px;
  }
  .form-block__description {
    grid-column: 1;
    grid-row: 1;
    background-color: #f0f8ef;
    padding: 30px;
  }
  .form-block__form {
    grid-column: 1;
    grid-row: 2;
    margin-top: -50px;
    border-radius: 10px;
  }
}
/* --------- Features -------- */
.features-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 80px 0;
}

.features {
  grid-column: 2/span 10;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature {
  flex: 1;
  text-align: center;
  padding: 50px 40px;
  background: #fff7e9;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.feature img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
.feature p {
  font-weight: 700;
  font-size: 25px;
}

@media (max-width: 992px) {
  .features-wrapper {
    display: block;
    padding: 30px 20px;
  }
  .features {
    flex-direction: column;
    grid-column: 1/-1;
    gap: 30px;
  }
  .feature {
    width: 100%;
    padding: 30px 20px;
  }
}
/* --------- Rating & Testimonials -------- */
.rating-testimonials-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 150px;
}

.rating {
  grid-column: 2/span 4;
  background: #fff7e9;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.rating__number {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 10px;
}
.rating__text {
  font-weight: 500;
  padding-bottom: 50px;
  color: #182534;
}
.rating__item {
  text-align: left;
  padding-bottom: 20px;
}
.rating__heading {
  font-size: 18px;
  margin-bottom: 5px;
}
.rating__bar-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rating__bar {
  flex: 1;
  background-color: #fcebe2;
  height: 15px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.rating__bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(var(--percent) * 1%);
  background: linear-gradient(90deg, #fdb757, #f7a376);
  transition: width 0.5s ease-in-out;
  border-radius: 20px;
}
.rating__percentage {
  font-weight: bold;
  font-size: 16px;
  width: 40px;
  text-align: right;
}

.testimonial-cards {
  grid-column: 6/12;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  display: flex;
  gap: 20px;
  background: #f0f8ef;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.testimonial-card__left {
  flex-shrink: 0;
}
.testimonial-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__right {
  flex: 1;
}
.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.testimonial-card__name {
  font-weight: 600;
  font-style: italic;
}
.testimonial-card__stars img {
  height: 20px;
}
.testimonial-card__content p {
  font-size: 16px;
}

.g {
  color: #4284f3;
}

.o,
.o2 {
  color: #ea4335;
}

.l {
  color: #33a852;
}

.e {
  color: #ea4335;
}

@media (max-width: 992px) {
  .rating-testimonials-wrapper {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .rating,
  .testimonial-cards {
    grid-column: 1/-1;
    width: 100%;
  }
  .rating {
    order: 2;
    padding: 30px;
  }
  .testimonial-cards {
    order: 1;
  }
}
/* --------- Footer -------- */
.footer__divider {
  border: 0;
  height: 1px;
  background-color: rgba(29, 43, 69, 0.18);
  margin-top: 150px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.footer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.footer__heading {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  padding-top: 20px;
}
.footer__about {
  grid-column: 2/span 4;
}
.footer__right-column {
  grid-column: 7/span 5;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer__nav {
  line-height: 2;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.footer__nav a:hover {
  text-decoration: underline;
}
.footer__contacts {
  line-height: 2;
}
.footer__copyright {
  grid-column: 2/span 10;
  text-align: center;
  padding-top: 20px;
  font-size: 0.875rem;
  padding-bottom: 50px;
}

.social-icons {
  display: flex;
  list-style: none;
  gap: 15px;
  padding: 0;
  margin: 0;
}
.social-icons img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__about,
  .footer__right-column,
  .footer__copyright {
    grid-column: auto;
  }
  .footer__right-column {
    flex-direction: column;
    gap: 40px;
  }
}

/*# sourceMappingURL=styles.css.map */
