@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --transition: .3s ease;
  --tr: .3s ease;
  --trd: .3s ease 0.3s;
  --sp: 80px;
  --header-height: 72px;
  --font: 'Inter', sans-serif;
  --default-font-family: 'Inter', sans-serif;
  --heading-font-family: 'Inter', sans-serif;
  --accent: #dbb32a;
  --primary: #dbb32a;
  --filter-bg: rgb(20 20 20 / 75%);
  --primary-h: #b8952f;
  --bg: #1f2a21;
  --bg-dark: #191f1a;
  --bg-card: #191f1a;
  --bg-card-h: #191f1a;
  --secondary: #2B3234;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --black-20: rgba(0, 0, 0, 0.2);
  --black: #212425;
  --grey-100: #F1F1F1;
  --grey-300: #E8E8E8;
  --grey-400: #AAADAD;
  --grey-700: #626667;
  --red: #FF3F3F;
  --green: #00E067;
  --fz-default: 16px;
  --h1: 68px;
  --h2: 48px;
  --h3: 32px;
  --h4: 26px;
  --h5: 20px;
  --h6: 17px;
  --m: 18px;
  --s: 14px;
  --xs: 12px;
  --xxs: 10px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--white);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

[class*=__container] [class*=__container] {
  padding: 0;
}

form input.error {
  border-color: var(--red) !important;
}

form input.not_error {
  border-color: var(--green) !important;
}

.accent {
  color: var(--accent);
}

h1,
._h1 {
  font-size: var(--h1);
  font-weight: 700;
  line-height: 110%;
}

h2,
._h2 {
  font-size: var(--h2);
  font-weight: 700;
  line-height: 110%;
}

h3,
._h3 {
  font-size: var(--h3);
  font-weight: 600;
  line-height: 115%;
}

h4,
._h4 {
  font-size: var(--h4);
  font-weight: 600;
  line-height: 120%;
}

h5,
._h5 {
  font-size: var(--h5);
  font-weight: 600;
  line-height: 120%;
}

h6,
._h6 {
  font-size: var(--h6);
  font-weight: 600;
  line-height: 125%;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._primary {
  color: var(--primary);
}

._secondary {
  color: var(--secondary);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

._e {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

._e ul {
  list-style: disc;
  padding-left: 20px;
}

._e strong {
  font-weight: 600;
}

.btn {
  font: 600 var(--s)/1 var(--font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background var(--tr), color var(--tr), border-color var(--tr), opacity var(--tr);
  white-space: nowrap;
}

.btn_primary {
  background: var(--primary);
  color: var(--black);
}

.btn_primary:hover {
  background: var(--primary-h);
}

.btn_outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn_outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn_secondary {
  background: var(--bg-card);
  color: var(--white);
}

.btn_secondary:hover {
  background: var(--bg-card-h);
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  background: var(--bg-card);
  position: relative;
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__field label {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  font-weight: 600;
}

.form__field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-10);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--white);
  transition: var(--tr);
  width: 100%;
}

.form__field input::-moz-placeholder {
  color: var(--white-30);
}

.form__field input::placeholder {
  color: var(--white-30);
}

.form__field input:focus {
  border-color: var(--primary);
  outline: none;
}

.form__submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form.loading {
  pointer-events: none;
}

.form.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.5) url('data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22loader-1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%0D%0A%20%20height%3D%2240%22%20fill%3D%22white%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20opacity%3D%22.2%22%20d%3D%22M20.201%205.169c-8.254%200-14.946%206.692-14.946%2014.946%200%208.255%206.692%2014.946%2014.946%2014.946s14.946-6.691%2014.946-14.946c-.001-8.254-6.692-14.946-14.946-14.946zm0%2026.58c-6.425%200-11.634-5.208-11.634-11.634%200-6.425%205.209-11.634%2011.634-11.634%206.425%200%2011.633%205.209%2011.633%2011.634%200%206.426-5.208%2011.634-11.633%2011.634z%22%2F%3E%3Cpath%20d%3D%22M26.013%2010.047l1.654-2.866a14.855%2014.855%200%2000-7.466-2.012v3.312c2.119%200%204.1.576%205.812%201.566z%22%3E%3CanimateTransform%20attributeType%3D%22xml%22%20attributeName%3D%22transform%22%20type%3D%22rotate%22%20from%3D%220%2020%2020%22%20to%3D%22360%2020%2020%22%20dur%3D%220.5s%22%20repeatCount%3D%22indefinite%22%2F%3E%3C%2Fpath%3E%3C%2Fsvg%3E') center/40px 40px no-repeat;
}

.form__msg {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  min-height: 20px;
}

.form__msg._success {
  color: #56C96A;
}

.form__msg._error {
  color: var(--red);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background var(--tr), box-shadow var(--tr);
  background: transparent;
}

.header.scrolled {
  background: var(--bg-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.header._active {
  background: var(--bg);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  padding: 0 20px;
}

.header__logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 10;
}

.header__logo-img {
  display: block;
  width: 120px;
  aspect-ratio: 3/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.header__nav {
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.header__menu li {
  position: relative;
}

.header__menu li a {
  display: block;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-70);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--tr);
  white-space: nowrap;
}

.header__menu li a:hover {
  color: var(--primary);
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__lang a {
  font-size: var(--s);
  font-weight: 500;
  color: var(--white-70);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--tr);
}

.header__lang a:hover,
.header__lang a.active {
  color: var(--primary);
}

.header__lang .lang-item-active a {
  color: var(--primary);
}

.header__btn {
  flex-shrink: 0;
}

.header__burger {
  display: none;
  position: relative;
  width: 27px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
}

.header__burger:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.header__burger span {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: top var(--trd), transform var(--tr), opacity var(--trd);
}

.header__burger span:nth-child(1) {
  top: 0;
}

.header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__burger span:nth-child(3) {
  top: calc(100% - 2px);
}

.header._active .header__burger span {
  transition: top var(--tr), transform var(--trd), opacity var(--tr);
}

.header._active .header__burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header._active .header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.header._active .header__burger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.footer {
  background: var(--bg-dark);
  padding-top: 60px;
  margin-top: auto;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__bottom .footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  grid-template-columns: none;
}

.footer__col--brand {
  padding-right: 20px;
}

.footer__col-title {
  font-size: var(--s);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  line-height: 1;
}

.footer__logo-img {
  display: block;
  width: 120px;
  aspect-ratio: 3/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer__description {
  font-size: var(--s);
  color: var(--white-70);
  line-height: 1.6;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-list li a {
  font-size: var(--s);
  color: var(--white-70);
  text-decoration: none;
  transition: color var(--tr);
}

.footer__nav-list li a:hover {
  color: var(--primary);
}

.footer__contact-item {
  display: block;
  font-size: var(--s);
  color: var(--white-70);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--tr);
}

.footer__contact-item:hover {
  color: var(--white);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  color: var(--white-70);
  text-decoration: none;
  transition: border-color var(--tr), color var(--tr);
}

.footer__social:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer__social svg {
  display: block;
}

.footer__bottom {
  border-top: 1px solid var(--white-10);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: var(--s);
  color: var(--white-30);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 48px;
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-10);
  border: none;
  cursor: pointer;
  transition: background var(--tr);
  flex-shrink: 0;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-consult__head {
  margin-bottom: 32px;
}

.modal-consult__title {
  font-size: var(--h3);
  font-weight: 600;
  line-height: 115%;
  color: var(--white);
  margin-bottom: 10px;
}

.modal-consult__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--white-70);
  line-height: 1.6;
}

.modal-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-form__field label {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  font-weight: 600;
  color: var(--white-70);
}

.modal-form__field label span {
  color: var(--primary);
}

.modal-form__field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--white);
  transition: border-color var(--tr);
  width: 100%;
}

.modal-form__field input::-moz-placeholder {
  color: var(--white-30);
}

.modal-form__field input::placeholder {
  color: var(--white-30);
}

.modal-form__field input:focus {
  border-color: var(--primary);
  outline: none;
}

.modal-form.loading {
  pointer-events: none;
}

.modal-form.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5) url('data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22loader-1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%0D%0A%20%20height%3D%2240%22%20fill%3D%22white%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20opacity%3D%22.2%22%20d%3D%22M20.201%205.169c-8.254%200-14.946%206.692-14.946%2014.946%200%208.255%206.692%2014.946%2014.946%2014.946s14.946-6.691%2014.946-14.946c-.001-8.254-6.692-14.946-14.946-14.946zm0%2026.58c-6.425%200-11.634-5.208-11.634-11.634%200-6.425%205.209-11.634%2011.634-11.634%206.425%200%2011.633%205.209%2011.633%2011.634%200%206.426-5.208%2011.634-11.633%2011.634z%22%2F%3E%3Cpath%20d%3D%22M26.013%2010.047l1.654-2.866a14.855%2014.855%200%2000-7.466-2.012v3.312c2.119%200%204.1.576%205.812%201.566z%22%3E%3CanimateTransform%20attributeType%3D%22xml%22%20attributeName%3D%22transform%22%20type%3D%22rotate%22%20from%3D%220%2020%2020%22%20to%3D%22360%2020%2020%22%20dur%3D%220.5s%22%20repeatCount%3D%22indefinite%22%2F%3E%3C%2Fpath%3E%3C%2Fsvg%3E') center/40px 40px no-repeat;
}

.modal-form__submit {
  width: 100%;
  padding: 16px;
  justify-content: center;
  margin-top: 4px;
}

.modal-form__msg {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  min-height: 18px;
}

.modal-form__msg._success {
  color: #56C96A;
}

.modal-form__msg._error {
  color: var(--red);
}

.modal-video {
  max-width: 900px;
  padding: 20px;
}

.modal-video__inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.modal-video__inner iframe,
.modal-video__inner #video-popup {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder {
  /*Параметры цифр */
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder {
  /*Параметры подложки для секций */
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder {
  /*Параметры секций разделения (:)*/
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder {
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

.section404 {
  min-height: 60vh;
  padding: calc(var(--sp) * 1.5) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 24px;
  text-align: center;
}

.section404__container {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 24px;
}

.section404__code {
  font-size: 220px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section404__title {
  font-size: var(--h3);
  font-weight: 600;
  line-height: 115%;
  color: var(--white-70);
  max-width: 480px;
}

.section404__btn {
  margin-top: 8px;
}

.services-hero {
  padding: var(--sp) 0 0;
}

.services-hero .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.services-hero .section-head__title {
  margin-bottom: 16px;
}

.services-hero .section-head__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: var(--white-70);
}

.services-grid {
  padding: var(--sp) 0;
}

.services-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid__empty {
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: var(--white-70);
  text-align: center;
}

.services-grid .pagination,
.services-grid .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
  margin-top: 40px;
}

.services-grid .pagination .page-numbers,
.services-grid .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--white-70);
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  transition: var(--tr);
}

.services-grid .pagination .page-numbers:hover,
.services-grid .nav-links .page-numbers:hover {
  border-color: rgba(219, 179, 42, 0.4);
  color: var(--white);
}

.services-grid .pagination .page-numbers.current,
.services-grid .nav-links .page-numbers.current {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}

.service-card {
  background: var(--bg-card);
  display: block;
  border: 1px solid var(--white-10);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--tr);
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 179, 42, 0.35);
}

.service-card__image {
  aspect-ratio: 16/10;
  background: var(--bg-card-h) center/cover no-repeat;
}

.service-card__body {
  padding: 24px;
}

.service-card__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card__title {
  font-size: var(--h5);
  font-weight: 600;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--white-70);
  margin-bottom: 18px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--primary);
  font-weight: 600;
  transition: var(--tr);
}

.service-card:hover .service-card__link {
  opacity: 0.8;
}

.services-cta {
  padding: var(--sp) 0;
  background: var(--secondary);
  border-top: 1px solid rgba(219, 179, 42, 0.15);
  border-bottom: 1px solid rgba(219, 179, 42, 0.15);
}

.services-cta__container {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.services-cta__title {
  font-size: var(--h2);
  font-weight: 700;
  line-height: 110%;
  color: var(--white);
  margin-bottom: 20px;
}

.services-cta__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: var(--white-70);
  margin-bottom: 36px;
}

.services-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1600px) {
  :root {
    --h1: 56px;
    --h2: 42px;
    --h3: 28px;
  }
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --sp: 65px;
    --h1: 44px;
    --h2: 36px;
    --h3: 24px;
    --h4: 22px;
    --h5: 18px;
    --h6: 16px;
  }

  .header__container {
    gap: 16px;
  }

  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 24px 20px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 99;
    flex: none;
  }

  .header._active .header__nav {
    transform: translateX(0);
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__menu li {
    width: 100%;
    border-bottom: 1px solid var(--white-10);
  }

  .header__menu li:first-child {
    border-top: 1px solid var(--white-10);
  }

  .header__menu li a {
    padding: 16px 0;
    font-size: 18px;
    color: var(--white);
    white-space: normal;
  }

  .header__btns {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--bg);
    border-top: 1px solid var(--white-10);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .header._active .header__btns {
    transform: translateX(0);
  }

  .header__actions {
    display: none;
  }

  .header__burger {
    display: block;
  }

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

  .section404__code {
    font-size: 160px;
  }

  .services-grid__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 100%;
    --sp: 50px;
    --header-height: 60px;
    --h1: 36px;
    --h2: 28px;
    --h3: 22px;
    --h4: 20px;
    --h5: 17px;
    --h6: 15px;
  }

  [class*=__container] {
    flex-direction: column;
  }

  .form {
    padding: 16px;
  }

  .header__container {
    padding: 0 16px;
    flex-direction: row;
  }

  .header__logo-img {
    width: 90px;
  }

  .header__nav {
    top: 60px;
    padding-bottom: 96px;
  }

  .header__btns {
    flex-direction: column;
  }

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

  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__logo-img {
    width: 90px;
  }

  .modal-content {
    padding: 28px 20px;
  }

  .modal-consult__head {
    margin-bottom: 24px;
  }

  .section404 {
    min-height: 50vh;
    padding: var(--sp) 0;
  }

  .section404__code {
    font-size: 110px;
  }

  .services-hero .section-head__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }

  .services-grid__items {
    gap: 16px;
  }

  .service-card__body {
    padding: 20px;
  }

  .services-cta__text {
    margin-bottom: 28px;
  }

  .services-cta__btns {
    flex-direction: column;
  }

  .services-cta__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --h1: 30px;
    --h2: 24px;
    --h3: 20px;
    --h4: 18px;
    --h5: 16px;
    --h6: 14px;
  }
}