html {
  scroll-behavior: smooth;
}

.container--default {
  max-width: 1320px;
}

.site-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  background-color: rgba(23, 28, 34, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.site-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-nav__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-nav__list {
  display: flex;
  height: 100%;
  align-items: center;
}

.site-nav__list > li {
  display: flex;
  height: 100%;
  align-items: center;
}

.site-nav__list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.site-nav__list > li > a:hover {
  color: var(--accent);
}

.site-nav__phone {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.02);
}

.site-nav__phone:hover {
  color: var(--accent);
  border: 1px solid rgba(255, 122, 24, 0.5);
}

.site-nav__social {
  width: 37px;
  height: 37px;
}

.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../images/webp/promo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 70px;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 600px at 15% 35%,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 70%);
}

.header__container {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 72px;
}

.header__row {
  width: 100%;
  --bs-gutter-x: 0;
}

.header__content {
  max-width: 720px;
}

.header__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-main);
  font-size: 48px;
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  margin: 0;
}

.header__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.45;
  margin: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.header__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.header__button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 16px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
  user-select: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.header__button--primary {
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffcc80 0%, #ff7a18 45%, #ff3d00 100%);
  box-shadow:
    0 18px 42px rgba(255, 122, 24, 0.45),
    0 10px 22px rgba(0, 0, 0, 0.4);
}

.header__button--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(255, 122, 24, 0.55),
    0 12px 26px rgba(0, 0, 0, 0.45);
}

.header__button--primary:active {
  transform: translateY(0);
  opacity: 0.95;
}

.header__button--secondary {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.header__button--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.header__button--secondary:active {
  transform: translateY(0);
  opacity: 0.95;
}

.header__media {
  min-height: 260px;
}

.main {
  position: relative;
  background-image: url("../images/webp/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 25, 0.8) 0%,
    rgba(15, 20, 25, 0.6) 40%,
    rgba(15, 20, 25, 0.9) 100%
  );
  pointer-events: none;
}

.main > * {
  position: relative;
  z-index: 1;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-main);
  margin-bottom: 56px;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  max-width: 280px;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.4) 15%,
    rgba(255, 255, 255, 0.7) 30%,
    rgba(255, 255, 255, 1) 55%,
    rgba(255, 255, 255, 1) 100%
  );
}

.section-title::after {
  transform: scaleX(-1);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: url("../images/webp/card-bg.webp") center/cover;
  background-size: 200%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.services__grid .service-card {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.services__grid .service-card:hover {
  transform: scale(1.03);
}

.service-card__img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card__info {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-card__list li {
  position: relative;
  padding-left: 20px;
  display: none;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a18 0%, #ff7a18 45%, #ff7a18 100%);
}

.service-card__list li:nth-child(-n + 2) {
  display: block;
}

.service-card.is-expanded .service-card__list li {
  display: block;
}

.service-card__more {
  margin-top: 6px;
  margin-bottom: 14px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
  text-align: center;
}

.service-card__more:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.service-card__more:active {
  transform: translateY(0);
  opacity: 0.95;
}

.service-card__more.is-hidden {
  display: none;
}

.serivce-card__price {
  display: block;
  text-align: center;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  margin-top: auto;
}

@media (max-width: 1200px) {
  .services__grid .service-card,
  .services__grid .service-card:hover {
    transform: none;
  }
}

.text-orange {
  color: #ff974e;
}

.about-us {
  color: var(--text-main);
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-us__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-us__text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-us__text-primary {
  font-weight: 600;
}

.about-us__text-secondary {
  font-weight: 400;
  color: var(--text-secondary);
}

.about-us__text-highlight {
  font-weight: 600;
  color: var(--accent);
}

.about-us__text-highlight span {
  color: var(--accent);
  font-weight: 700;
}

.about-us__more {
  display: none;
}

.about-us__more.is-open {
  display: block;
}

.about-us__toggle {
  margin: 16px auto 0;
  display: block;
  padding: 8px 18px;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #ffffff;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.about-us__toggle:hover {
  opacity: 0.8;
}

.about-us__toggle:focus-visible {
  outline: none;
  opacity: 0.9;
}

@media (min-width: 992px) {
  .about-us__more {
    display: block !important;
  }

  .about-us__toggle {
    display: none;
  }
}

.yandex-map-section {
  width: 100%;
  height: 50vh;
  margin: 0;
  padding: 0;
  margin-top: 32px;
}

.yandex-map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.why-us__box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(0, 0, 0, 0.25) 55%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      120% 120% at 50% 100%,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0) 60%
    );
  box-shadow:
    inset 0 10px 22px rgba(0, 0, 0, 0.45),
    inset 0 -10px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.why-us__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.06)
  );
  opacity: 0.55;
  pointer-events: none;
}

.why-us__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.why-item {
  position: relative;
  padding: 22px 20px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-item + .why-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    140% 140% at 50% 50%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  pointer-events: none;
}

.why-item--stat {
  flex-direction: column;
}

.why-stat__top {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.why-stat__value {
  font-weight: 900;
  font-size: 58px;
  line-height: 1;
  background: linear-gradient(180deg, #ffe1b8 0%, #ff9f2f 45%, #ff6a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.why-stat__label,
.why-stat__unit,
.why-stat__text {
  font-weight: 600;
  opacity: 0.95;
}

.why-stat__text {
  max-width: 260px;
}

.why-item--feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.why-feature__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.why-feature__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.why-feature__text {
  font-weight: 600;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .why-us__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-item + .why-item {
    border-top: none;
  }

  .why-item {
    padding: 28px 26px;
    min-height: 115px;
  }

  .why-item::after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: 0;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0)
    );
  }

  .why-item:nth-child(3n)::after {
    display: none;
  }

  .why-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .why-item:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  .why-item:nth-child(5) {
    grid-column: 3;
    grid-row: 1;
  }

  .why-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .why-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .why-item:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }
}

.case-card {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  background: url(../images/webp/card-bg.webp) center / cover;
  background-size: 200%;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  min-height: 400px;
  border: 2px solid #b0b7c3;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card .row,
.case-card__media,
.case-card__gallery,
.case-card__item {
  height: 100%;
}

.case-card__author {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.case-card__text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.case-card__gallery {
  display: grid;
  gap: 16px;
}

.case-card__gallery--count-3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.case-card__gallery--count-3 .case-card__item--main {
  grid-row: 1 / -1;
  grid-column: 1 / 2;
}

.case-card__gallery--count-3 .case-card__item--side {
  grid-column: 2 / 3;
}

.case-card__item {
  display: flex;
}

.case-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.cases {
  overflow: hidden;
}

.cases-list.owl-carousel {
  overflow: visible;
}

.cases-list .owl-stage {
  display: flex;
}

.cases-list .owl-item {
  display: flex;
  height: auto;
  opacity: 0.5;
  filter: blur(0.2px);
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.cases-list .case-card {
  height: 100%;
  width: 100%;
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.cases-list .owl-item.active {
  opacity: 0.28;
}

.cases-list .owl-item.center {
  opacity: 1;
  filter: none;
  z-index: 3;
}

.cases-list .owl-item.active:not(.center):first-of-type,
.cases-list .owl-item.active:not(.center):last-of-type {
  opacity: 0.22;
}

.owl-dots {
  display: block !important;
}

.owl-carousel .owl-nav {
  position: absolute !important;
  top: 50% !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  z-index: 10 !important;
  transform: translateY(-50%) !important;
}

.owl-carousel .owl-nav button {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.owl-carousel .owl-nav button:nth-child(1) {
  left: -48px !important;
}

.owl-carousel .owl-nav button:nth-child(2) {
  right: -48px !important;
}

.owl-carousel .owl-nav button:hover {
  color: var(--accent) !important;
}

.owl-carousel .owl-dot {
  background-color: #ddd !important;
  border-radius: 50% !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 8px !important;
}

.owl-carousel .owl-dot.active {
  background-color: var(--accent) !important;
}

.owl-carousel .owl-dot:hover {
  background-color: #fff !important;
}

.owl-carousel .owl-dots {
  text-align: center !important;
  position: absolute !important;
  bottom: -40px !important;
  width: 100% !important;
  z-index: 5 !important;
}

@media (max-width: 992px) {
  #site-nav-menu {
    display: none;
  }

  .header__content {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .header__title {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: 0.015em;
    margin-bottom: 16px;
  }

  .header__text {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 28px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .header__actions {
    justify-content: center;
  }

  .header__button {
    width: 100%;
    max-width: 420px;
  }

  .header__media {
    display: none;
  }

  .service-card__img {
    height: 220px;
  }

  .service-card__info {
    padding: 16px;
  }

  .service-card__title {
    font-size: 16px;
  }

  .service-card__list {
    gap: 6px;
  }

  .service-card__list li {
    padding-left: 18px;
  }

  .serivce-card__price {
    font-size: 22px;
  }

  .about-us__image img {
    max-height: 300px;
    object-fit: cover;
  }

  .why-us__stats {
    border-radius: 16px;
  }

  .why-stat {
    padding: 22px 20px;
    min-height: 100px;
  }

  .why-stat__value {
    font-size: 48px;
  }

  .why-stat__text {
    max-width: 200px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .site-nav__logo {
    font-size: 18px;
  }

  .site-nav__phone {
    position: fixed;
    top: 75px;
    right: 5px;
    z-index: 1001;
    background: rgba(23, 28, 34, 0.6);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
  }

  .site-nav__social {
    width: 33px;
    height: 33px;
  }

  .header__container {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .header__content {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .header__title {
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0 0 14px 0;
    padding: 0;
  }

  .header__text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 22px 0;
    padding: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .header__actions {
    gap: 12px;
    padding: 0;
    margin: 0;
  }

  .header__button {
    font-size: 14px;
    padding: 10px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
  }

  .section-title {
    font-size: 22px;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-title::before,
  .section-title::after {
    max-width: 160px;
    height: 1px;
  }

  .services__grid {
    gap: 14px;
  }

  .service-card {
    border-radius: 14px;
  }

  .service-card__img {
    height: 170px;
  }

  .service-card__info {
    padding: 12px 12px 10px;
  }

  .service-card__title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }

  .service-card__list {
    gap: 5px;
  }

  .service-card__list li {
    font-size: 14px;
    line-height: 1.35;
    padding-left: 16px;
  }

  .service-card__list li::before {
    width: 7px;
    height: 7px;
    top: 0.6em;
  }

  .service-card__more {
    margin-top: 8px;
    margin-bottom: 10px;
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 12px;
  }

  .serivce-card__price {
    font-size: 18px;
    margin-top: 10px;
  }

  .about-us__text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .why-us__stats {
    border-radius: 14px;
  }

  .why-stat {
    padding: 18px 16px;
    min-height: 88px;
  }

  .why-stat__value {
    font-size: 40px;
  }

  .why-stat__label,
  .why-stat__unit,
  .why-stat__text {
    font-size: 14px;
  }

  .why-stat__text {
    max-width: 180px;
  }

  .why-stat::after {
    top: 12px;
    bottom: 12px;
  }
}

@media (max-width: 360px) {
  .header__title {
    font-size: 22px;
    line-height: 1.14;
  }

  .header__text {
    font-size: 15px;
  }

  .service-card__img {
    height: 155px;
  }

  .service-card__title {
    font-size: 13px;
  }

  .service-card__list li {
    font-size: 13px;
  }

  .serivce-card__price {
    font-size: 17px;
  }

  .why-stat {
    padding: 16px 14px;
    min-height: 80px;
  }

  .why-stat__value {
    font-size: 36px;
  }

  .why-stat__label,
  .why-stat__unit,
  .why-stat__text {
    font-size: 13px;
  }

  .why-stat__text {
    max-width: 160px;
  }
}

@media (max-width: 1300px) {
  .owl-prev,
  .owl-next {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .owl-carousel .owl-dots {
    position: static !important;
    margin-top: 24px;
    bottom: auto !important;
  }
}

.feedback__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding: 30px;
  background: url(../images/webp/card-bg.webp) center / cover;
  background-size: 200%;
}

.feedback__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.feedback__container > * {
  position: relative;
  z-index: 1;
}

.feedback-form__input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.66px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  color: #fff;
  border: 2px solid #fff;
}

.feedback-form__input::placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.66px;
}

.feedback-form__submit {
  outline: none;
  border: none;
  box-shadow: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  letter-spacing: 0.5px;
  transition:
    background-position 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #ffcc80 0%, #ff7a18 45%, #ff3d00 100%);
}

.feedback-form__submit:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
}

.feedback__agreement {
  color: #fff;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}

.feedback__agreement-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .feedback__container {
    padding: 40px 30px;
    max-width: 100%;
  }

  .feedback-form__input {
    padding: 14px 20px;
    font-size: 16px;
  }

  .feedback-form__submit {
    padding: 14px 20px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .feedback__container {
    padding: 30px 20px;
  }

  .feedback-form__input {
    padding: 13px 18px;
    font-size: 15px;
  }

  .feedback-form__submit {
    padding: 13px 18px;
    font-size: 15px;
  }

  .feedback__agreement {
    font-size: 13px;
  }
}

.feedback-radio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feedback-radio__item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.feedback-radio__item input {
  position: absolute;
  opacity: 0;
}

.feedback-radio__custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: relative;
  flex-shrink: 0;
}

.feedback-radio__custom::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #ff7a18;
  opacity: 0;
}

.feedback-radio__item input:checked + .feedback-radio__custom {
  border-color: #ff7a18;
}

.feedback-radio__item input:checked + .feedback-radio__custom::after {
  opacity: 1;
}

.feedback-radio__text {
  line-height: 1.4;
}

.feedback-radio__text small {
  display: block;
  font-size: 13px;
  opacity: 0.85;
  font-weight: 400;
}

@media (max-width: 576px) {
  .feedback-radio__item {
    font-size: 14px;
  }
}

.feedback-map {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.feedback-map__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.feedback-map__link {
  position: absolute;
  left: 0;
  z-index: 4;
  color: #eee;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
}

.feedback-map__link--title {
  top: 0;
}

.feedback-map__link--category-1 {
  top: 14px;
}

.feedback-map__link--category-2 {
  top: 28px;
}

.feedback-map__frame {
  position: relative;
  z-index: 1;
  display: block;
}

@media (max-width: 992px) {
  #feedback .col-12 {
    max-width: 600px;
  }

  #feedback .feedback-map {
    margin-top: 24px;
  }
}
