:root {
  --dark: #0b141e;
  --dark-soft: #101b27;
  --gold: #dfa943;
  --gold-dark: #c89434;
  --text: #111111;
  --muted: #4a4a4a;
  --light: #f4f4f4;
  --line: #d5a248;
  --white: #ffffff;
  --border: #cfcfcf;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
}

.section {
  padding: 63px 0;
}

.section h2 {
  margin: 0;
  text-align: center;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
}

.section-line {
  width: 70px;
  height: 2px;
  margin: 20px auto 52px;
  background: var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 56px;
  gap: 11px;
  padding: 16px 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button--gold {
  color: #05080c;
  background: var(--gold);
}

.button--gold:hover {
  background: var(--gold-dark);
}

.button--light {
  color: #0d0d0d;
  background: #f8f8f8;
}

.button--light:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: #ffffff;
}

.actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 1044px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(6, 12, 18, 0.56) 0%,
      rgba(6, 12, 18, 0.42) 38%,
      rgba(6, 12, 18, 0.08) 64%,
      rgba(6, 12, 18, 0.12) 100%
    ),
    url("../assets/hero.jpg") center center / cover no-repeat;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 44px;
}

.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 55;
}

.site-header__logo img {
  width: 102px;
  height: 102px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: clamp(46px, 4.2vw, 78px);
  padding-top: 38px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
	margin-left: 70px;
}

.site-nav a,
.site-header__phone {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-header__phone:hover {
  color: var(--gold);
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding-top: 34px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.site-header__phone svg {
  width: 28px;
  height: 28px;
  padding: 7px;
  border-radius: 50%;
  color: #08111b;
  background: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-burger {
  display: none;
}

.site-mobile-menu {
  display: none;
}

.hero__inner {
  min-height: 1044px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 245px 0 120px;
}

.hero__copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 4vw, 73px);
  line-height: 1.03;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p {
  max-width: 600px;
  margin: 40px 0 90px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 400;
}

.hero p strong {
  color: var(--gold);
  font-weight: 700;
}

.hero .button {
  min-width: 230px;
  min-height: 60px;
  padding: 16px 30px;
  font-size: 18px;
  border-radius: 7px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 900px;
  margin-top: 94px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 600;
}

.feature svg {
  width: 48px;
  height: 48px;
  color: #c99a66;
  fill: currentColor;
  stroke: none;
  flex: 0 0 auto;
}

.feature span {
  min-width: 142px;
}

.services {
  background: var(--light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.service {
  min-width: 0;
}

.service img {
  width: 100%;
	height:181px;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
  filter: saturate(0.92) contrast(0.98);
}

.service h3 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 500;
}

.service ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service li,
.footer li {
  position: relative;
  padding-left: 14px;
}

.service li::before,
.footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.service li {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.3;
}

.trust,
.reviews {
  color: var(--white);
  background: var(--dark);
}

.trust {
  padding: 90px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
}

.trust-item {
  text-align: center;
}

.round-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  width: 76px;
  height: 76px;
}

.round-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.trust-item h3 {
  margin: 26px 0 18px;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 500;
}

.trust-item p {
  max-width: 290px;
  margin: 0 auto;
  color: #e9eef4;
  font-size: 20px;
  line-height: 1.35;
}

.cases {
  background: var(--light);
  padding-bottom: 86px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.case-card {
  position: relative;
  min-height: 360px;
  padding: 68px 28px 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8f8f8;
  text-align: left;
}

.case-icon {
  position: absolute;
  top: -38px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #cda052;
  background: #f7f7f7;
  transform: translateX(-50%);
}

.case-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  stroke: none;
}

.case-card h3 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 650;
}

.case-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.35;
}

.case-card p:last-child {
  margin-bottom: 0;
}

.cases__button {
  display: flex;
  width: fit-content;
  margin: 52px auto 0;
}

.reviews {
  padding: 88px 0 76px;
}

.reviews .container {
  position: relative;
}

.reviews__add {
  display: flex;
  justify-content: center;
  margin: 34px 0 0;
}

.reviews__add-button {
  min-width: 250px;
}

.review-alert {
  width: min(100%, 680px);
  margin: 0 auto 34px;
  padding: 14px 18px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
}

.review-alert--success {
  color: #13200b;
  background: #e9f7da;
  border: 1px solid rgba(223, 169, 67, 0.55);
}

.review-alert--error {
  color: #3a0d0d;
  background: #ffe4e4;
  border: 1px solid rgba(180, 50, 50, 0.35);
}

.reviews__arrows {
  display: block;
}

.reviews__arrow {
  position: absolute;
  top: 58%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #0b141e;
  background: var(--gold);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.reviews__arrow:hover {
  background: var(--gold-dark);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%) scale(1.04);
}

.reviews__arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.reviews__arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews__arrow--prev {
  left: -78px;
}

.reviews__arrow--next {
  right: -78px;
}

.reviews__grid {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  scrollbar-color: rgba(255, 255, 255, 0.58) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.review {
  flex: 0 0 calc((100% - 68px) / 3);
  min-height: 260px;
  padding: 32px 34px 34px;
  border-radius: 8px;
  color: var(--text);
  background: #f7f7f7;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.stars {
  color: #d99a16;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1;
}

.review h3 {
  margin: 28px 0 18px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
}

.review p {
  margin: 0;
  font-size: 18px;
  line-height: 1.38;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 28px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.slider-dots button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.slider-dots button.is-active {
  background: rgba(255, 255, 255, 0.86);
}

.slider-dots--mobile {
  display: none;
}

.slider-dots--light button {
  background: rgba(11, 20, 30, 0.24);
}

.slider-dots--light button.is-active {
  background: var(--gold);
}

.cta {
  color: var(--white);
      background: linear-gradient(90deg, rgba(7, 13, 20, 0), rgba(7, 13, 20, 0)), url(../assets/cta.jpg) center 25% / cover no-repeat;
}

.cta__inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta h2 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 650;
}

.cta p {
  margin: 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.4;
}

.footer {
  padding: 86px 0 52px;
  color: var(--white);
  background: var(--dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.2fr;
  gap: 86px;
}

.footer h2 {
  margin: 0 0 32px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 550;
}

.footer li {
  margin: 0 0 14px;
  color: #f0f3f7;
  font-size: 16px;
}

.footer address {
  display: grid;
  gap: 18px;
  font-style: normal;
}

.footer address a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #f5f5f5;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.footer address svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.footer__bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  min-height: 92px;
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 500;
	margin-bottom:-40px;
}

.footer__bottom a {
  transition: color 180ms ease;
}

.footer__bottom a:hover {
  color: var(--gold);
}

.map-card {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  background: #edf1f4;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  padding: 24px;
}

.review-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.72);
  backdrop-filter: blur(4px);
}

.review-modal__box {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 38px 38px 36px;
  border-radius: 12px;
  color: var(--text);
  background: #f7f7f7;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.review-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #0b141e;
  background: rgba(11, 20, 30, 0.08);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.review-modal__close::before {
  content: "×";
  display: block;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-4px);
}

.review-modal__close:hover {
  background: rgba(223, 169, 67, 0.45);
  transform: rotate(90deg);
}

.review-modal h3 {
  margin: 0 42px 12px 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 650;
}

.review-modal__text {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.review-form {
  display: grid;
  gap: 16px;
}

.review-form__field {
  display: grid;
  gap: 7px;
}

.review-form__field label {
  font-size: 14px;
  font-weight: 700;
  color: #0b141e;
}

.review-form__field input,
.review-form__field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.review-form__field input {
  min-height: 50px;
  padding: 0 14px;
}

.review-form__field textarea {
  min-height: 140px;
  resize: vertical;
  padding: 13px 14px;
}

.review-form__field input:focus,
.review-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(223, 169, 67, 0.2);
}

.review-form__submit {
  width: 100%;
  margin-top: 4px;
}

.review-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.review-modal-open,
body.site-menu-open {
  overflow: hidden;
}

@media (min-width: 1021px) and (max-width: 1600px) {
  .container {
    width: min(100% - 72px, 1320px);
  }

  .section {
    padding: 63px 0;
  }

  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__inner {
    padding: 190px 0 90px;
  }

  .hero h1 {
    font-size: clamp(70px, 4.4vw, 86px);
  }

  .hero p {
    max-width: 560px;
    margin: 42px 0 70px;
    font-size: 23px;
  }

  .site-header {
    padding-top: 34px;
  }

  .site-header__logo img {
    width: 94px;
    height: 94px;
  }

  .site-nav {
    padding-top: 34px;
    gap: clamp(34px, 4vw, 64px);
    font-size: 20px;
  }

  .site-header__phone {
    padding-top: 31px;
    font-size: 15px;
  }

  .hero__features {
    max-width: 900px;
    gap: 34px;
    margin-top: 72px;
  }

  .feature {
    font-size: 14px;
  }

  .feature svg {
    width: 44px;
    height: 44px;
  }

  .service h3 {
    font-size: 25px;
  }

  .service li,
  .case-card p {
    font-size: 17px;
  }

  .case-card {
    min-height: 335px;
    padding-inline: 24px;
  }

  .review p {
    font-size: 16px;
  }

  .reviews__arrow--prev {
    left: -64px;
  }

  .reviews__arrow--next {
    right: -64px;
  }
}

@media (min-width: 701px) and (max-width: 1020px) {
  .container {
    width: min(100% - 48px, 920px);
  }

  .site-header .container {
    width: min(100% - 48px, 920px);
  }

  .section {
    padding: 63px 0;
  }

  .section h2 {
    font-size: 36px;
  }

  .site-header {
    padding-top: 22px;
  }

  .site-header__inner {
    align-items: center;
    gap: 22px;
  }

  .site-header__logo img {
    width: 82px;
    height: 82px;
  }

  .site-nav {
    gap: 22px;
    padding-top: 0;
    font-size: 15px;
  }

  .site-header__phone {
    gap: 9px;
    padding-top: 0;
    font-size: 15px;
  }

  .site-header__phone svg {
    width: 28px;
    height: 28px;
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero {
    background-position: 62% center;
  }

  .hero__inner {
    justify-content: center;
    padding: 112px 0 46px;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 64px);
  }

  .hero p {
    max-width: 580px;
    font-size: 24px;
  }

  .button {
    min-height: 54px;
    font-size: 15px;
  }

  .hero__features,
  .services__grid,
  .trust__grid,
  .cases__grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__features {
    max-width: 620px;
    gap: 24px 34px;
    margin-top: 56px;
  }

  .feature {
    font-size: 15px;
  }

  .services__grid {
    gap: 34px 26px;
  }

  .service h3 {
    font-size: 25px;
  }

  .service li {
    font-size: 17px;
  }

  .trust__grid {
    gap: 44px 36px;
  }

  .case-card {
    min-height: 320px;
  }

  .case-card p {
    font-size: 15px;
  }

  .review {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 240px;
  }

  .review p {
    font-size: 16px;
  }

  .reviews__arrow {
    width: 48px;
    height: 48px;
  }

  .reviews__arrow--prev {
    left: -20px;
  }

  .reviews__arrow--next {
    right: -20px;
  }

  .cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    padding: 34px 0;
  }

  .footer__grid {
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), 520px);
  }

  .site-header {
    padding-top: 14px;
  }

  .site-header .container {
    width: min(calc(100% - 32px), 520px);
  }

  .site-header__inner {
    position: static;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .site-header__logo img {
    width: 66px;
    height: 66px;
  }

  .site-nav,
  .site-header__phone {
    display: none;
  }

  .site-burger {
    position: relative;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(11, 20, 30, 0.5);
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      transform 180ms ease;
  }

  .site-burger:hover {
    background: rgba(223, 169, 67, 0.22);
    border-color: rgba(223, 169, 67, 0.55);
  }

  .site-burger span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 220ms ease,
      opacity 180ms ease;
  }

  .site-burger.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: #08111b;
  }

  .site-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .site-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-mobile-menu {
    position: absolute;
    top: 92px;
    left: 16px;
    right: 16px;
    z-index: 54;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(11, 20, 30, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .site-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  .site-mobile-menu a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
  }

  .site-mobile-menu__phone {
    gap: 10px;
    margin-top: 8px;
    color: #08111b !important;
    background: var(--gold) !important;
  }

  .site-mobile-menu__phone svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    border-radius: 50%;
    color: #08111b;
    background: rgba(255, 255, 255, 0.22);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
  }

  .section {
    padding: 75px 0;
  }

  .section h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .section-line {
    width: 62px;
    margin: 18px auto 38px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(
        180deg,
        rgba(6, 12, 18, 0.76) 0%,
        rgba(6, 12, 18, 0.58) 48%,
        rgba(6, 12, 18, 0.4) 100%
      ),
      url("../assets/hero.jpg") 28% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 690px;
    justify-content: center;
    padding: 138px 0 38px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.08;
  }

  .hero p {
    margin: 24px 0 32px;
    font-size: 21px;
  }

  .actions,
  .cta .actions {
    width: 100%;
    gap: 14px;
  }

  .button,
  .hero .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__features {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    width: 100%;
    gap: 14px;
    margin-top: 34px;
    padding: 0 0 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero__features::-webkit-scrollbar {
    display: none;
  }

  .feature {
    flex: 0 0 255px;
    min-height: 86px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(6, 12, 18, 0.42);
    backdrop-filter: blur(6px);
    scroll-snap-align: start;
    font-size: 14px;
    line-height: 1.18;
  }

  .feature svg {
    width: 44px;
    height: 44px;
  }

  .feature span {
    min-width: 0;
  }

  .services__grid,
  .trust__grid,
  .cases__grid,
  .reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .services__grid,
  .trust__grid,
  .reviews__grid {
    gap: 18px;
    padding: 0 0 10px;
  }

  .cases__grid {
    gap: 18px;
    padding: 32px 0 10px;

  }

  .services__grid > *,
  .trust__grid > *,
  .cases__grid > *,
  .reviews__grid > * {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .slider-dots--mobile {
    display: flex;
    margin-top: 18px;
  }

  .service {
    max-width: none;
    margin: 0;
  }

  .service img {
    border-radius: 8px;
  }

  .service h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .service li {
    font-size: 17px;
  }

  .trust {
    padding: 58px 0;
  }

  .trust__grid {
    padding-bottom: 16px;
  }

  .trust-item p {
    max-width: 280px;
  }

  .case-card {
    min-height: 0;
    padding: 54px 20px 24px;
  }

  .case-icon {
    top: -32px;
    width: 64px;
    height: 64px;
  }

  .case-card h3 {
    font-size: 25px;
  }

  .case-card p,
  .review p {
    font-size: 18px;
  }

  .cases__button {
    width: 100%;
  }

  .reviews {
    padding: 58px 0 46px;
  }

  .reviews__add {
    margin: 28px 0 0;
  }

  .reviews__add-button {
    width: 100%;
    min-width: 0;
  }

  .reviews__arrows {
    display: none;
  }

  .review {
    flex-basis: 100%;
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .review h3 {
    font-size: 17px;
  }

  .review-alert {
    margin-bottom: 24px;
  }

  .cta__inner {
    min-height: 236px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 58px 0;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 17px;
  }

  .footer {
    padding: 54px 0 38px;
  }

  .footer__grid {
    gap: 36px;
  }

  .footer__bottom {
    margin-top: 42px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 14px;
    min-height: 104px;
    padding: 22px 0;
    text-align: center;
    font-size: 15px;
  }

  .footer h2 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .footer li,
  .footer address a {
    font-size: 16px;
  }

  .map-card {
    height: 220px;
  }

  .review-modal {
    padding: 16px;
  }

  .review-modal__box {
    padding: 30px 22px 24px;
  }

  .review-modal h3 {
    font-size: 24px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), 340px);
  }

  .site-mobile-menu {
    left: 12px;
    right: 12px;
  }

  .hero {
    background-position: center center, 23% center;
  }

  .hero__inner {
    min-height: 670px;
  }

  .hero h1 {
    font-size: 47px;
	  
  }

  .hero p {
    font-size: 18px;
  }

  .feature {
    flex-basis: 235px;
  }
}

.hero-mobile-break {
  display: none;
}

@media (max-width: 700px) {
  .hero-mobile-break {
    display: block;
  }
}


/*  */
