@charset "UTF-8";
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/
html {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; /* 1 */
  line-height: 1.15; /* 2 */
  -webkit-text-size-adjust: 100%; /* 3 */
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4; /* 4 */
}

/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

* {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--color-regular);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#offer:target {
  scroll-margin-top: 200px;
}

h1,
h2,
h3,
p {
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  line-break: auto;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

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

.link {
  display: inline-flex;
  gap: var(--gap-sm);
  font-size: var(--fs-base);
  align-items: center;
  color: var(--color-blue-main);
}

.logo {
  line-height: 0;
}

.margin-top-sm {
  margin-top: 80px;
}

.margin-top-md {
  margin-top: 160px;
}

.margin-top-lg {
  margin-top: 240px;
}

.margin-bottom-sm {
  margin-bottom: 80px;
}

.margin-bottom-md {
  margin-bottom: 160px;
}

.margin-bottom-lg {
  margin-bottom: 240px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: clamp(320px, 100%, 500px);
  gap: var(--gap-lg);
  align-items: center;
  transform: translateY(var(--translate-y, 0));
}

.note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-grey);
}
.note--main {
  color: var(--color-regular);
}
.note--left {
  text-align: left;
}

.poligon {
  position: absolute;
  left: var(--left, auto);
  top: var(--top, auto);
  width: var(--width, auto);
  height: var(--height, auto);
  z-index: 0;
}
@media (max-width: 767px) {
  .poligon {
    display: none;
  }
}

.poligon-bg {
  position: relative;
  z-index: 0;
  color: var(--color-white);
}
.poligon-bg::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  border-radius: var(--radius-sm);
  transform: skew(-20deg);
  background: linear-gradient(90deg, var(--color-blue-main) 0%, var(--color-blue-second) 100%);
  z-index: -1;
}

.headline {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-blue-main);
  position: relative;
  margin-bottom: 60px;
}
.headline--margin-sm {
  margin-bottom: 30px;
}
.headline::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: var(--color-orange);
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
}
.headline--center {
  text-align: center !important;
}
.headline--center::after {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .headline {
    text-align: center;
  }
  .headline::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.paragraph {
  line-height: var(--lh-lg);
  font-size: var(--fs-sm);
}

.container {
  display: flex;
  justify-content: center;
}

.content {
  max-width: var(--max-size) !important;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  padding: var(--padding-base);
}

:root {
  --color-blue-main: #005baa;
  --color-blue-second: #1a7bbf;
  --color-orange: #f27028;
  --color-orange-second: #f59324;
  --color-regular: #333;
  --color-grey: #888;
  --color-grey-light: #f6f6f6;
  --color-white: #fff;
  --gap-xl: 80px;
  --gap-lg: 40px;
  --gap-base: 30px;
  --gap-md: 20px;
  --gap-sm: 10px;
  --padding-xl: 80px;
  --padding-lg: 40px;
  --padding-md: 20px;
  --padding-base: 10px 20px;
  --padding-sm: 10px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --fs-xl: 3rem;
  --fs-lg: 2.25rem;
  --fs-md: 2rem;
  --fs-base: 1.5rem;
  --fs-sm: 1rem;
  --fs-xs: 0.75rem;
  --fs-xxs: 0.6rem;
  --lh-lg: 2;
  --lh-md: 1.6;
  --max-size: 1440px;
  --border-h-lg: 4px;
  --border-h-md: 2px;
}

@media (min-width: 768px) {
  :root {
    --fs-xl: 3rem;
    --fs-lg: 2.25rem;
    --fs-md: 2rem;
    --fs-base: 1.5rem;
    --fs-sm: 1rem;
    --fs-xs: 0.75rem;
    --fs-xxs: 0.6rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --fs-xl: 4rem;
    --fs-lg: 2.5rem;
    --fs-md: 2.25rem;
    --fs-base: 1.5rem;
    --fs-sm: 1.25rem;
    --fs-xs: 1;
    --fs-xxs: 0.6rem;
  }
}
.orange {
  color: var(--color-orange);
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Bold.woff2") format("woff2"), url("./fonts/Montserrat-Bold.woff") format("woff"), url("./fonts/Montserrat-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.woff2") format("woff2"), url("./fonts/Montserrat-Medium.woff") format("woff"), url("./fonts/Montserrat-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.woff2") format("woff2"), url("./fonts/Montserrat-SemiBold.woff") format("woff"), url("./fonts/Montserrat-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.button {
  display: inline-flex;
  gap: var(--gap-sm);
  padding: var(--padding-base);
  border-radius: 10pc;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, var(--color-blue-main) 0%, var(--color-blue-second) 100%);
}
.button__icon {
  color: var(--color-white) !important;
}
@media (max-width: 1023px) {
  .button {
    font-size: var(--fs-sm);
  }
}
.button:not(.button__unclickable) {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:not(.button__unclickable):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.button:not(.button__unclickable):active {
  transform: translateY(0);
}
.button:not(.button__unclickable)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.button:not(.button__unclickable):focus:not(:active)::after {
  animation: ripple 0.6s ease-out forwards;
}
.button__unclickable {
  cursor: default;
  pointer-events: none;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}
.header {
  border-bottom: var(--border-h-md) solid var(--color-blue-main);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-direction: row;
}
.header__item {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}
.header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  z-index: 8;
  border-bottom: var(--border-h-md) solid var(--color-blue-main);
}
.header__menu.active {
  display: flex;
}
.header__link {
  color: var(--color-regular);
  font-size: var(--fs-base);
  text-align: left;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header__link:hover {
  color: var(--color-blue-main);
  background-color: rgba(0, 0, 0, 0.02);
}
.header__link:last-child {
  border-bottom: none;
}
.header__link--main {
  color: var(--color-orange);
  font-weight: 600;
}
.header__link--main:hover {
  color: var(--color-orange-dark);
}
.header__button {
  font-size: var(--fs-base);
  transition: transform 0.2s ease;
}
.header__button:hover {
  transform: scale(1.05);
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue-main);
  transition: all 0.3s ease;
}
.header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .header__button {
    font-size: var(--fs-sx);
  }
  .header__content {
    flex-direction: row;
  }
  .header__item {
    gap: var(--gap-lg);
  }
  .header__item:first-child {
    flex-grow: 1;
  }
  .header__menu {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    box-shadow: none;
    border-bottom: none;
    gap: var(--gap-md);
  }
  .header__link {
    font-size: var(--fs-xs);
    padding: 0;
    border-bottom: none;
    text-align: center;
  }
  .header__link:hover {
    background-color: transparent;
  }
  .header__hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__button {
    font-size: var(--fs-xs) !important;
  }
}

.hero {
  background-color: var(--color-grey-light);
  padding: var(--padding-xl) 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}
@media (min-width: 992px) {
  .hero__content {
    flex-direction: row;
    align-items: center;
  }
}
.hero__text {
  flex: 1;
}
.hero__headline {
  font-size: var(--fs-xl);
  color: var(--color-blue-main);
  margin-bottom: var(--gap-md);
  line-height: 1.2;
}
.hero__description {
  font-size: var(--fs-base);
  line-height: var(--lh-md);
  max-width: 600px;
}
.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--radius-sm);
}
@media (max-width: 991px) {
  .hero__image {
    order: -1;
  }
}

.breadcrumbs {
  border-bottom: var(--border-h-md) solid var(--color-grey-light);
  padding: var(--padding-sm) 0;
}
.breadcrumbs__content {
  display: flex;
  width: 100%;
}
.breadcrumbs__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-sm);
  font-size: var(--fs-xs);
  line-height: var(--lh-md);
}
.breadcrumbs__link {
  color: var(--color-blue-main);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs__link:hover {
  color: var(--color-orange);
  text-decoration: underline;
}
.breadcrumbs__separator {
  color: var(--color-grey);
  margin: 0 var(--gap-xxs);
}
.breadcrumbs__current {
  color: var(--color-regular);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
@media (max-width: 767px) {
  .breadcrumbs__nav {
    font-size: var(--fs-xxs);
  }
  .breadcrumbs__current {
    max-width: 200px;
  }
}

.features {
  padding: var(--padding-xl) 0;
}
.features__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}
@media (min-width: 992px) {
  .features__content {
    flex-direction: row;
    align-items: center;
  }
}
.features__image {
  flex: 1;
}
.features__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.features__text {
  flex: 1;
}
.features__headline {
  margin-bottom: var(--gap-lg);
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  list-style: none;
  padding: 0;
}
.features__item {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  font-size: var(--fs-base);
}
.features__item i {
  color: var(--color-orange);
  font-size: var(--fs-md);
}
.features__icon {
  width: 48px;
  min-width: 48px;
}
@media (max-width: 991px) {
  .features__image {
    order: -1;
  }
  .features__item {
    font-size: var(--fs-sm);
  }
  .features__item i {
    color: var(--color-orange);
    font-size: var(--fs-md);
  }
}

.about {
  background-color: var(--color-grey-light);
  padding: var(--padding-xl) 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}
@media (min-width: 992px) {
  .about__content {
    flex-direction: row;
    align-items: center;
  }
}
.about__text {
  flex: 1;
}
.about__headline {
  margin-bottom: var(--gap-lg);
}
.about__description {
  font-size: var(--fs-base);
  line-height: var(--lh-md);
}
.about__description p {
  margin-bottom: var(--gap-md);
}
.about__description p:last-child {
  margin-bottom: 0;
}
.about__image {
  flex: 1;
}
.about__image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-sm);
}
@media (max-width: 991px) {
  .about__image {
    order: -1;
  }
  .about__description {
    font-size: var(--fs-sm);
  }
}

.reviews {
  padding: var(--padding-xl) 0;
  background-color: var(--color-grey-light);
  position: relative;
}
.reviews__wrapper {
  display: grid;
  grid-template-areas: "rating list";
  grid-template-columns: 250px 1fr;
  gap: var(--gap-lg);
}
@media (max-width: 767px) {
  .reviews__wrapper {
    grid-template-areas: "rating" "list";
    grid-template-columns: 1fr;
  }
}
.reviews__headline {
  grid-area: headline;
}
.reviews__headline::after {
  background-color: var(--color-orange);
}
.reviews__list {
  grid-area: list;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.reviews__add {
  grid-area: add;
  align-self: center;
  margin-top: var(--gap-md);
}

.rating {
  grid-area: rating;
  background: var(--color-white);
  padding: var(--padding-lg);
  border-radius: var(--radius-sm);
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
  bottom: 100px;
}
.rating__title {
  font-size: var(--fs-base);
  color: var(--color-blue-main);
  margin-bottom: var(--padding-md);
  text-align: center;
}
.rating__stars {
  display: flex;
  flex-direction: column;
  gap: var(--padding-sm);
}
.rating__star {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: var(--fs-sm);
  color: var(--color-orange);
}
.rating__star i {
  color: var(--color-orange);
}
.rating__bar {
  flex-grow: 1;
  height: 8px;
  background: var(--color-grey-light);
  border-radius: 4px;
  overflow: hidden;
}
.rating__bar-fill {
  height: 100%;
  background: var(--color-orange);
}
.rating__count {
  min-width: 20px;
  text-align: right;
  color: var(--color-regular);
}

.review {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--padding-lg);
}
.review__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--gap-md);
  margin-bottom: var(--padding-md);
}
.review__user {
  display: flex;
  gap: var(--gap-md);
  align-items: flex-start;
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  font-size: var(--fs-base);
  flex-shrink: 0;
}
.review__info {
  flex-grow: 1;
}
.review__author {
  font-size: var(--fs-base);
  color: var(--color-blue-main);
  font-weight: 600;
  margin: 0;
}
.review__meta {
  display: flex;
  gap: var(--gap-md);
  align-items: center;
  flex-wrap: wrap;
}
.review__date {
  font-size: var(--fs-xs);
  color: var(--color-grey);
}
.review__user-rating {
  display: flex;
  gap: 2px;
}
.review__user-rating i {
  color: var(--color-orange);
  font-size: var(--fs-xs);
}
.review__body {
  margin-top: var(--padding-md);
}
.review__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-blue-main);
  margin: var(--padding-md) 0 var(--padding-sm);
}
.review__comment p, .review__pros p, .review__cons p {
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
  margin: 0;
}
.review__actions {
  display: flex;
  gap: var(--gap-md);
  margin-top: var(--padding-md);
  align-items: center;
}
.review__action {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: var(--fs-xs);
  cursor: pointer;
  padding: var(--padding-xs) var(--padding-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.review__action:hover {
  background: var(--color-grey-light);
}
.review__action.liked {
  color: var(--color-green);
}
.review__action.disliked {
  color: var(--color-red);
}
.review__count {
  font-size: var(--fs-xs);
}
.review__reply {
  margin-left: auto;
  color: var(--color-blue-main);
  font-size: var(--fs-xs);
  padding: 0;
}
.review__reply:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .review {
    padding: var(--padding-md);
  }
  .review__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--padding-xs);
  }
}
/* Стили для формы отзыва */
.rating-stars {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.rating-stars .star {
  font-size: 24px;
  color: var(--color-grey);
  cursor: pointer;
  transition: color 0.2s ease;
}

.rating-stars .star.active,
.rating-stars .star.selected {
  color: var(--color-orange);
}

.rating-stars .star:hover {
  color: var(--color-orange-second);
}

#review-photo {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--color-grey);
  width: 100%;
  background: transparent;
}

#review-photo:focus {
  outline: none;
  border-bottom-color: var(--color-blue-main);
}

.services {
  padding: var(--padding-xl) 0;
  background-color: var(--color-white);
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.services__headline {
  text-align: center;
}
.services__headline::after {
  left: 50%;
  transform: translateX(-50%);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap-md);
}
@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  display: block;
  height: auto;
  min-height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--color-white);
  text-decoration: none;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--img-url);
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.service-card:hover::before {
  transform: scale(1.05);
}
.service-card:hover .service-card__overlay {
  background-color: rgba(0, 91, 170, 0.85);
}
.service-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: background-color 0.3s ease;
}
.service-card__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--padding-lg);
}
.service-card__title {
  color: var(--color-white);
  font-size: var(--fs-base);
  font-weight: 600;
  margin: 0 0 var(--padding-xs) 0;
  line-height: var(--lh-md);
}
.service-card__price {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-orange);
}
@media (max-width: 1023px) {
  .service-card {
    height: 180px;
  }
  .service-card__content {
    padding: var(--padding-md);
  }
  .service-card__title {
    font-size: var(--fs-sm);
  }
  .service-card__price {
    font-size: var(--fs-base);
  }
}

.faq {
  padding: var(--padding-xl) 0;
  background-color: var(--color-white);
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.faq__headline {
  text-align: center;
}
.faq__headline::after {
  left: 50%;
  transform: translateX(-50%);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-grey-light);
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--padding-md) 0;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--fs-base);
  color: var(--color-blue-main);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-item__question:hover {
  color: var(--color-orange);
}
.faq-item__question i {
  color: var(--color-orange);
  transition: transform 0.3s ease;
}
.faq-item__question.active i {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item__answer p {
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
  margin: 0;
  padding-bottom: var(--padding-md);
}
.faq-item__answer.active {
  max-height: 300px;
}
@media (max-width: 767px) {
  .faq-item__question {
    font-size: var(--fs-sm);
  }
}

.collage {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.collage__bg {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  min-height: 400px;
  min-width: 650px;
}
.collage__background {
  position: relative;
  margin-top: 40px;
  z-index: 1;
}
.collage__computer {
  position: absolute;
  top: 0;
  right: 100px;
  max-width: 100%;
}
.collage__item {
  position: absolute;
  top: var(--top, 0);
  left: var(--left, 0);
  right: var(--right, auto);
  bottom: var(--bottom, auto);
  width: var(--width, auto);
  height: var(--height, auto);
  z-index: var(--z-idx, 0);
}
.collage__shadow {
  position: absolute;
  top: 80%;
  left: 25%;
  z-index: 1;
  max-width: 100%;
}
.collage__comp {
  position: relative;
  z-index: 1;
  max-width: 536px;
}
.collage--mobile {
  display: none !important;
}
@media (max-width: 1023px) {
  .collage--full {
    display: none !important;
  }
  .collage--mobile {
    display: flex !important;
  }
  .collage--mobile .collage__bg {
    transform: translateX(50%);
    left: -50%;
  }
  .collage--mobile .collage__computer {
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 500px) {
  .collage--mobile .collage__comp {
    right: 20%;
  }
}

.offer {
  background-color: var(--color-grey-light);
  overflow: hidden;
  padding: var(--padding-md) 0;
  text-align: center;
}
.offer--main {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.offer--without-bg {
  background-color: var(--color-white);
}
.offer__content {
  display: flex;
  grid-template-columns: 60% 60%;
  flex-direction: column;
  gap: var(--gap-md);
  width: 100%;
}
.offer__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  order: 1;
}
.offer__headline {
  font-size: var(--fs-lg);
  color: var(--color-blue-main);
  margin-bottom: var(--gap-md);
}
.offer__papagraph {
  font-size: var(--fs-base);
  color: var(--color-regular);
  order: 3;
}
@media (max-width: 767px) {
  .offer__papagraph {
    font-size: var(--fs-sm);
  }
}
.offer__image {
  order: 2;
  margin: var(--gap-md) 0;
}
.offer__image .collage {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .offer {
    text-align: left;
    padding-top: var(--padding-lg);
    padding-bottom: var(--padding-lg);
  }
  .offer__content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--gap-xl);
    height: 100%;
  }
  .offer__text {
    order: initial;
    justify-content: center;
  }
  .offer__headline {
    font-size: var(--fs-xl);
    margin-bottom: 40px;
  }
  .offer__papagraph {
    order: initial;
    display: inline-flex;
    gap: var(--gap-sm);
  }
  .offer__image {
    order: initial;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1300px) {
  .offer__content {
    gap: var(--gap-lg);
    grid-template-columns: 40% 60%;
  }
}

.bullets__content {
  padding-top: var(--padding-xl);
}
.bullets__content--extra-padding {
  padding-bottom: var(--padding-xl);
}
.bullets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md) var(--gap-lg);
}
.bullets__grid--sm {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media (max-width: 1023px) {
  .bullets__grid {
    grid-template-columns: 1fr;
  }
}
.bullets__item {
  border-radius: var(--radius-lg);
  border: var(--border-h-md) solid var(--color-blue-main);
  padding: var(--padding-lg);
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
}
.bullets__item--sm {
  font-size: var(--fs-sm);
}
.bullets__item--variant {
  display: flex;
  gap: var(--padding-md);
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--padding-md);
  background-color: var(--color-grey-light);
  line-height: var(--lh-md);
}
.bullets__item--column {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bullets__icon {
  width: var(--fs-md);
  height: var(--fs-md);
}

.tagline {
  position: relative;
  background: var(--img-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: clamp(500px, 700px, 100vh);
}
.tagline::after {
  content: "";
  position: absolute;
  height: 300px;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 0;
  transform: rotateX(180deg);
}
.tagline--gradient-bottom::after {
  bottom: 0;
  transform: rotateX(0);
}
.tagline__content {
  display: flex;
  height: auto;
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
}
.tagline__text {
  position: relative;
  z-index: 1;
  font-size: var(--fs-lg);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  line-height: var(--lh-md);
}
.tagline--left-bottom .tagline__content {
  margin-top: auto;
}
.tagline--left-bottom .tagline__text {
  text-align: left;
}

.goods__content {
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
}
.goods__grid {
  display: grid;
  gap: var(--gap-lg);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.goods__headline {
  margin-top: 20px;
}
.goods__headline::after {
  width: 100%;
  height: 2px;
}
@media (max-width: 1023px) {
  .goods__headline {
    font-size: var(--fs-md);
  }
}
.goods__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--padding-lg);
  border-radius: var(--radius-sm);
  border: var(--border-h-md) solid var(--color-grey-light);
}
.goods__meta {
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  gap: 15px;
  z-index: 2;
}
.goods__rating, .goods__reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.goods__image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 250px;
}
.goods__text {
  margin-bottom: 10px;
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
}
.goods__price {
  margin-top: var(--padding-md);
  font-weight: 700;
  color: var(--color-orange);
  font-size: var(--fs-md);
  text-align: center;
  padding-top: var(--padding-sm);
  border-top: 1px solid var(--color-grey-light);
  margin-top: auto;
}

.info__content {
  padding-top: var(--padding-xl);
  padding-bottom: var(--padding-xl);
}
.info__text {
  line-height: var(--lh-lg);
  font-size: var(--fs-sm);
  margin-bottom: 20px;
}
.info__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md) var(--gap-md);
}

.block {
  background: var(--img-url, "");
  background-color: var(--bg-color, var(--color-blue-second));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.block__content {
  display: flex;
  align-items: center;
  height: var(--height, auto);
  width: 100%;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(360px, 100%, 500px);
  gap: var(--gap-base);
  position: relative;
  z-index: 0;
  padding: var(--padding-xl) var(--padding-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-grey-light);
}
.form--clear {
  padding: 0;
  background-color: var(--color-white);
  width: 100%;
  gap: var(--gap-base);
}
.form__checkbox-label {
  margin-left: var(--padding-sm);
}
.form__item {
  position: relative;
  width: 100%;
}
.form__item--center {
  display: flex;
  justify-content: center;
}
.form__item--checkbox {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: var(--padding-md);
  position: relative;
  padding-left: 30px;
}
.form__item:focus-within .form__label {
  bottom: 100%;
  font-size: 0.8em;
}
.form__item:has(.form__input:not(:-moz-placeholder-shown)) .form__label {
  bottom: 100%;
  font-size: 0.8em;
}
.form__item:has(.form__input:not(:placeholder-shown)) .form__label {
  bottom: 100%;
  font-size: 0.8em;
}
.form__item--not-valid .form__input {
  border-color: #ff0000;
}
.form__item .error-message {
  position: absolute;
  top: 90%;
  color: #ff0000;
  font-size: var(--fs-xxs);
  margin-top: 5px;
}
.form__checkbox {
  position: absolute;
  opacity: 0;
  left: 0;
}
.form__checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: var(--fs-xs);
  color: var(--color-grey);
}
.form__checkbox + label:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}
.form__checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--color-orange);
  border-radius: 2px;
}
.form__checkbox:focus + label:before {
  box-shadow: 0 0 0 2px var(--color-blue-main);
}
.form__label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  pointer-events: none;
  color: var(--color-grey);
  transition: all 0.3s;
}
.form__input {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid var(--color-grey);
  padding: var(--padding-sm);
  width: 100%;
  height: var(--fs-lg);
}
.form__input:focus {
  outline: none;
  border-bottom-color: var(--color-blue-main);
}
.form__button {
  margin-top: var(--padding-md);
  width: -moz-max-content;
  width: max-content;
}

.footer {
  border-top: var(--border-h-md) solid var(--color-regular);
  background-color: var(--color-white);
  padding-top: var(--padding-lg);
  scroll-padding-bottom: var(--padding-lg);
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
  }
}
.footer__item {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__item:first-child {
    width: 100%;
  }
}
.footer__menu {
  display: flex;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__menu {
    width: 100%;
    order: 1;
  }
}
.footer__link {
  color: var(--color-regular);
  font-size: var(--fs-sm);
  text-align: center;
  display: flex;
  align-items: center;
}
.footer__link--main {
  color: var(--color-orange);
  font-weight: 600;
}
.footer__button {
  font-size: var(--fs-sm);
}
@media (max-width: 767px) {
  .footer__button {
    font-size: var(--fs-xs);
  }
  .footer__button img {
    width: 18px;
  }
}

.modal {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.modal__window {
  padding: var(--padding-xl) var(--padding-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 350px;
  position: relative;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
  margin-left: auto;
}
.modal__close span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue-main);
  transition: all 0.3s ease;
}
.modal__close span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.modal__close span:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
}
.modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  color: var(--color-regular);
  text-align: center;
}
.modal__headline {
  font-size: var(--fs-md);
  color: var(--color-orange);
  font-weight: 600;
}
.modal__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
}
.modal__button {
  width: -moz-max-content;
  width: max-content;
}

.process {
  padding: var(--padding-xl) 0;
  background-color: var(--color-grey-light);
}
.process__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.process__headline {
  text-align: center;
}
.process__headline::after {
  left: 50%;
  transform: translateX(-50%);
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: var(--gap-md);
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--padding-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
}
.process-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-main);
  color: var(--color-white);
  font-size: var(--fs-md);
  font-weight: 700;
  border-radius: 50%;
}
.process-step__content {
  flex: 1;
}
.process-step__title {
  font-size: var(--fs-base);
  color: var(--color-blue-main);
  margin-bottom: var(--padding-sm);
}
.process-step__description {
  font-size: var(--fs-sm);
  line-height: var(--lh-md);
  color: var(--color-regular);
}
@media (max-width: 767px) {
  .process-step {
    padding: var(--padding-md);
  }
  .process-step__number {
    width: 30px;
    height: 30px;
    font-size: var(--fs-sm);
  }
  .process-step__title {
    font-size: var(--fs-sm);
  }
  .process-step__description {
    font-size: var(--fs-xs);
  }
}



.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgb(255, 255, 255);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.swiper-button-prev::after {
  transform: rotate(-135deg);
  margin-right: -2px;
}

.swiper-button-next::after {
  transform: rotate(45deg);
  margin-left: -2px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 640px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}