:root {
  --main-typeface: 'Cormorant Garamond', sans-serif;
  --second-typeface: 'DM Sans', sans-serif;
  --display-typeface: 'Silk Serif', serif;
  --eyebrow-typeface: 'Sweet Sans Pro', sans-serif;
  --white: #ffffff;
  --black: #000000;
  --error: #ef4444;
  --bg-darkest: #000711;
  --bg-dark: #000d1e;
  --bg-dark-3: #00101f;
  --bg-dark-4: #001228;
  --bg-dark-5: #00162f;
  --bg-dark-6: #051a32;
  --bg-pill-scrolled: rgba(10, 26, 46, 0.85);
  --solutions-card-bg: #000912;
  --gold: #c9a84c;
  --gold-bright: #e9b83b;
  --gold-gradient: linear-gradient(94deg, #c9a84c 0%, #e8c97a 50%, #c9a84c 100%);
  --gold-gradient-flat: linear-gradient(92deg, #c9a84c 0%, #e8c97a 50%, #c9a84c 100%);
  --gold-gradient-bright: linear-gradient(97deg, #e9b83b 0%, #e8c97a 50%, #e9b83b 100%);
  --text-primary: #00101f;
  --text-muted: #9f9f9f;
  --text-muted-soft: rgba(159, 159, 159, 0.35);
  --text-placeholder: rgba(159, 159, 159, 0.35);
  --border-gold-12: rgba(201, 168, 76, 0.12);
  --border-gold-14: rgba(201, 168, 76, 0.14);
  --border-gold-15: rgba(201, 168, 76, 0.15);
  --border-gold-20: rgba(201, 168, 76, 0.2);
  --border-gold-28: rgba(201, 168, 76, 0.28);
  --border-gold-30: rgba(201, 168, 76, 0.3);
  --border-gold-50: rgba(201, 168, 76, 0.5);
  --overlay-white-10: rgba(255, 255, 255, 0.1);
  --overlay-white-05: rgba(255, 255, 255, 0.05);
  --overlay-white-25: rgba(255, 255, 255, 0.25);
  --overlay-white-32: rgba(255, 255, 255, 0.32);
  --field-bg: rgba(0, 22, 47, 0.8);
  --form-bg: rgba(0, 22, 47, 0.7);
  --gold-tint-04: rgba(201, 168, 76, 0.04);
  --gold-tint-10: rgba(201, 168, 76, 0.1);
  --gold-tint-15: rgba(233, 184, 59, 0.15);
  --gold-bright-04: rgba(233, 184, 59, 0.04);
  --gold-bright-10: rgba(233, 184, 59, 0.1);
  --gold-bright-40: rgba(233, 184, 59, 0.4);
  --slider-card-fade: #02142c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--second-typeface);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  width: 100%;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

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

section {
  position: relative;
  width: 100%;
  z-index: 2;
}

.screen-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.screen-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1440px) {
  .container {
    max-width: calc(100% - 160px);
  }
}
@media (max-width: 1280px) {
  .container {
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 32px);
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  border: 0;
  outline: none;
  font: inherit;
  color: inherit;
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--second-typeface);
  font-size: 16px;
  letter-spacing: 0.204em;
  text-transform: uppercase;
  line-height: 1.02;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

@media (max-width: 1500px) {
  .on-big-screens {
    display: none;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-typeface);
  font-weight: 500;
  line-height: 1;
  color: inherit;
  word-break: break-word;
}
h1 strong, h1 b, h2 strong, h2 b, h3 strong, h3 b, h4 strong, h4 b, h5 strong, h5 b, h6 strong, h6 b {
  font-weight: 500;
  color: var(--gold-bright);
}

h1 {
  font-size: 120px;
}
@media (max-width: 1800px) {
  h1 {
    font-size: 110px;
  }
}
@media (max-width: 1600px) {
  h1 {
    font-size: 100px;
  }
}
@media (max-width: 1500px) {
  h1 {
    font-weight: 500;
    font-size: 92px;
    line-height: 0.92;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 1080px) {
  h1 {
    font-size: 68px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 64px;
}
@media (max-width: 1500px) {
  h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.14;
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-family: var(--second-typeface);
  font-weight: 500;
  font-size: 10.4px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h6 {
  font-family: var(--second-typeface);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.143em;
  text-transform: uppercase;
}

p {
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: inherit;
}
@media (max-width: 1500px) {
  p {
    line-height: 1.75;
  }
}

.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
}
@media (max-width: 768px) {
  .lead {
    font-size: 17px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--eyebrow-typeface);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: currentColor;
}
@media (max-width: 1500px) {
  .eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 1.14;
  }
  .eyebrow::before {
    width: 28px;
  }
}
@media (max-width: 768px) {
  .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .eyebrow::before {
    width: 22px;
  }
}

.eyebrow--hero::before {
  width: 40px;
}
@media (max-width: 1500px) {
  .eyebrow--hero::before {
    width: 34px;
  }
}

.eyebrow--bright {
  color: var(--gold-bright);
}

.eyebrow--no-line::before {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 2px;
  font-family: var(--second-typeface);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
@media (max-width: 1500px) {
  .btn {
    height: auto;
    padding: 16px 28px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.7px;
  }
}

.btn--primary {
  background-image: var(--gold-gradient);
  color: var(--bg-dark-5);
}
.btn--primary:hover {
  box-shadow: 0 10px 30px var(--border-gold-30);
}

.btn--ghost {
  background-color: var(--overlay-white-10);
  border: 2px solid var(--overlay-white-25);
  color: var(--white);
  font-weight: 400;
}
.btn--ghost:hover {
  background-color: var(--overlay-white-25);
}

.btn--sm {
  height: 46px;
  padding: 0 24px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (max-width: 1500px) {
  .btn--sm {
    height: auto;
    padding: 12px 22px;
    letter-spacing: 0.7px;
  }
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--overlay-white-25);
  color: var(--gold);
  font-weight: 400;
}
.btn--outline:hover {
  border-color: var(--gold);
  background-color: var(--gold-tint-10);
}

.link--with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--second-typeface);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--gold-bright);
}
.link--with-arrow::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("../img/icons/btn-arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.link--with-arrow:hover::after {
  transform: translateX(4px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--overlay-white-10);
  border: 1px solid var(--overlay-white-25);
  border-radius: 6px;
  padding: 0;
}
@media (max-width: 1080px) {
  .burger {
    display: inline-flex;
  }
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger--active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger--active .burger__line:nth-child(2) {
  opacity: 0;
}
.burger--active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.select {
  position: relative;
  width: 100%;
}

.select__trigger {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: var(--field-bg);
  border: 1px solid var(--border-gold-20);
  border-radius: 2px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--second-typeface);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.select__trigger:focus {
  border-color: var(--gold-bright);
}

.select__value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__value--placeholder {
  color: var(--text-placeholder);
}

.select__caret {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.select--open .select__caret {
  transform: rotate(180deg);
}

.select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
  background-color: var(--bg-dark-5);
  border: 1px solid var(--border-gold-20);
  border-radius: 4px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.select__options::-webkit-scrollbar {
  width: 6px;
}
.select__options::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 4px;
}

.select--open .select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select__option {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.select__option:hover, .select__option--active {
  background-color: var(--gold-bright-10);
  color: var(--gold-bright);
}
.select__option--selected {
  color: var(--gold-bright);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 580px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

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

.form__label {
  display: block;
  font-family: var(--second-typeface);
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.183em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .form__label {
    font-size: 10px;
  }
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--field-bg);
  border: 1px solid var(--border-gold-20);
  border-radius: 2px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--second-typeface);
  transition: border-color 0.2s ease;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-placeholder);
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold-bright);
}

.form__input {
  height: 48px;
}

.form__textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.4;
}
@media (max-width: 1500px) {
  .form__textarea {
    min-height: 100px;
  }
}

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

.contact__form-wrap .wpcf7 {
  width: 100%;
}
.contact__form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1500px) {
  .contact__form-wrap .wpcf7-form {
    gap: 16px;
  }
}
.contact__form-wrap .wpcf7-form > p {
  margin: 0;
}
.contact__form-wrap .wpcf7-form br {
  display: none;
}
.contact__form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact__form-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=file]),
.contact__form-wrap textarea.wpcf7-form-control {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--field-bg);
  border: 1px solid var(--border-gold-20);
  border-radius: 2px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--second-typeface);
  text-transform: none;
  transition: border-color 0.2s ease;
}
.contact__form-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=file])::placeholder,
.contact__form-wrap textarea.wpcf7-form-control::placeholder {
  color: var(--text-placeholder);
}
.contact__form-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=file]):focus,
.contact__form-wrap textarea.wpcf7-form-control:focus {
  border-color: var(--gold-bright);
  outline: none;
}
.contact__form-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=file]) {
  height: 48px;
}
.contact__form-wrap textarea.wpcf7-form-control {
  min-height: 112px;
  line-height: 1.4;
  resize: vertical;
}
.contact__form-wrap select.wpcf7-form-control {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  background-color: var(--field-bg);
  border: 1px solid var(--border-gold-20);
  border-radius: 2px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--second-typeface);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.contact__form-wrap select.wpcf7-form-control:focus {
  border-color: var(--gold-bright);
  outline: none;
}
.contact__form-wrap select.wpcf7-form-control option {
  color: var(--text-primary);
}
.contact__form-wrap .wpcf7-checkbox,
.contact__form-wrap .wpcf7-radio,
.contact__form-wrap .wpcf7-acceptance {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form-wrap .wpcf7-list-item {
  margin: 0;
}
.contact__form-wrap .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
}
.contact__form-wrap .wpcf7-list-item input[type=checkbox],
.contact__form-wrap .wpcf7-list-item input[type=radio] {
  accent-color: var(--gold-bright);
  width: 16px;
  height: 16px;
}
.contact__form-wrap .wpcf7-submit {
  width: 100%;
  height: 56px;
  margin-top: 8px;
  padding: 0 32px;
  border: 0;
  border-radius: 2px;
  font-family: var(--second-typeface);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
  cursor: pointer;
  background-image: var(--gold-gradient);
  color: var(--bg-dark-5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact__form-wrap .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--border-gold-30);
}
.contact__form-wrap .wpcf7-submit:active {
  transform: translateY(0);
}
@media (max-width: 1500px) {
  .contact__form-wrap .wpcf7-submit {
    font-size: 12px;
    height: 48px;
    padding: 0 24px;
  }
}
.contact__form-wrap .wpcf7-spinner {
  margin: 16px auto 0;
}
.contact__form-wrap .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--error);
}
.contact__form-wrap .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-family: var(--second-typeface);
  font-size: 12px;
  line-height: 1.4;
  color: var(--error);
}
.contact__form-wrap .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border: 1px solid var(--border-gold-20);
  border-radius: 2px;
  font-family: var(--second-typeface);
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
}
.contact__form-wrap .wpcf7-form.sent .wpcf7-response-output {
  border-color: var(--gold-bright);
}
.contact__form-wrap .wpcf7-form.invalid .wpcf7-response-output,
.contact__form-wrap .wpcf7-form.unaccepted .wpcf7-response-output,
.contact__form-wrap .wpcf7-form.spam .wpcf7-response-output,
.contact__form-wrap .wpcf7-form.failed .wpcf7-response-output {
  border-color: var(--error);
  color: var(--error);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 0;
  pointer-events: none;
  transition: padding 0.35s ease;
}
@media (max-width: 1500px) {
  .header {
    padding: 0;
  }
}

.header__pill {
  position: relative;
  width: 100%;
  max-width: 1720px;
  height: 80px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: transparent;
  border: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  pointer-events: auto;
  transition: max-width 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
@media (max-width: 1500px) {
  .header__pill {
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 1080px) {
  .header__pill {
    max-width: calc(100% - 24px);
    height: auto;
    min-height: 80px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .header__inner {
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 1080px) {
  .header__inner {
    max-width: calc(100% - 32px);
    padding: 16px;
    flex-wrap: wrap;
    min-height: 80px;
    height: auto;
    row-gap: 0;
    transition: row-gap 0.35s ease, padding-bottom 0.35s ease;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1080px) {
  .header__nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }
}

@media (max-width: 1080px) {
  .header__nav--left {
    order: 10;
  }
}

@media (max-width: 1080px) {
  .header__nav--right {
    order: 11;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 150px;
}
@media (max-width: 1280px) {
  .header__menu {
    gap: 48px;
  }
}
@media (max-width: 1080px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }
}

.header__menu-item {
  font-family: var(--second-typeface);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.143em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s ease;
}
.header__menu-item:hover {
  color: var(--gold-bright);
}

.header__menu-link {
  color: inherit;
}

.header__menu-item--dropdown {
  position: relative;
}

.header__menu-link--dropdown {
  display: inline-flex;
  align-items: center;
  padding: 29px 0;
  cursor: pointer;
}

.header__dropdown-list {
  position: absolute;
  top: 75%;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 252px;
  padding: 16px 16px 16px 0;
  border-radius: 4px;
  background-color: rgba(10, 24, 46, 0.9);
  border: 1px solid #24354d;
  box-shadow: 0 40px 50px rgba(0, 13, 30, 0.5);
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.header__menu-item--dropdown:hover .header__dropdown-list,
.header__menu-item--dropdown:focus-within .header__dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__dropdown-link {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 8px 12px 8px 24px;
  overflow: hidden;
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: color 0.3s ease 0.1s, border-left-color 0.15s ease;
}

.header__dropdown-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--gold-tint-15) 0%, rgba(233, 184, 59, 0) 100%);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.25s ease 0.12s;
}

.header__dropdown-link:hover {
  color: var(--white);
  border-left-color: var(--gold-bright);
}

.header__dropdown-link:hover::before {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 1080px) {
  .header__menu-item--dropdown {
    position: static;
    width: 100%;
  }
  .header__menu-link--dropdown {
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
  .header__dropdown-list {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0;
    gap: 2px;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .js-dropdown.is-open .header__dropdown-list {
    padding: 14px 0 2px;
  }
  .header__dropdown-link {
    height: auto;
    padding: 10px 12px 10px 16px;
  }
}
.header--fixed {
  padding: 16px 0;
}
.header--fixed .logo {
  width: 117px;
  height: 40px;
}
@media (max-width: 1500px) {
  .header--fixed .logo {
    width: 94px;
    height: 32px;
  }
}

.header--fixed .header__pill,
.header--menu-open .header__pill {
  background-color: var(--bg-pill-scrolled);
  border-color: var(--border-gold-20);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1080px) {
  .header--menu-open .header__inner {
    row-gap: 24px;
    padding-bottom: 18px;
  }
  .header--menu-open .header__nav {
    max-height: 1200px;
    opacity: 1;
  }
}

.logo {
  display: block;
  width: 164px;
  height: 56px;
  flex-shrink: 0;
  transition: width 0.35s ease, height 0.35s ease;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1500px) {
  .logo {
    width: 94px;
    height: 32px;
  }
}

.footer {
  position: relative;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-gold-15);
  padding: 65px 0 32px;
  color: var(--white);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 54px;
}
@media (max-width: 1280px) {
  .footer__inner {
    gap: 40px;
  }
}
@media (max-width: 1080px) {
  .footer__inner {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 580px) {
  .footer__inner {
    gap: 40px;
    padding-bottom: 40px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 320px;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .footer__brand {
    max-width: 100%;
  }
}

.footer__brand-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 1280px) {
  .footer__brand-content {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__brand-content {
    gap: 24px;
  }
}

.footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 760px;
  flex-grow: 1;
}
@media (max-width: 1280px) {
  .footer__cols {
    gap: 32px;
  }
}
@media (max-width: 1080px) {
  .footer__cols {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__cols {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (max-width: 580px) {
  .footer__cols {
    flex-direction: column;
    gap: 32px;
  }
}

.footer__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (max-width: 768px) {
  .footer__col {
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
  }
}
@media (max-width: 580px) {
  .footer__col {
    flex: 1 1 100%;
  }
}

.footer__logo {
  display: block;
  width: 123px;
  height: 42px;
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-muted);
  max-width: 320px;
}
@media (max-width: 1080px) {
  .footer__tagline {
    max-width: 100%;
  }
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold-20);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__social-link img {
  width: 16px;
  height: 16px;
  transition: filter 0.2s ease;
}
.footer__social-link:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}
.footer__social-link:hover img {
  filter: brightness(0) invert(1);
}

.footer__col-title {
  font-family: var(--second-typeface);
  font-weight: 500;
  font-size: 10.4px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__list li {
  height: 18px;
}

.footer__link {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: var(--gold-bright);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-muted);
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  margin: 0 0 0 20px;
  border-top: 1px solid var(--gold-bright-10);
  font-size: 11.2px;
  color: var(--text-muted-soft);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
  }
}

.footer__legal {
  display: flex;
  gap: 48px;
}
@media (max-width: 480px) {
  .footer__legal {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.footer__legal-link {
  color: var(--text-muted-soft);
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: var(--gold-bright);
}

.footer__copyright {
  font-size: 11.2px;
  font-weight: 400;
  line-height: 1.5;
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--text-muted-soft);
  transition: opacity 0.2s ease;
}
.footer__credit:hover {
  opacity: 0.75;
}

.footer__credit-text {
  font-size: 11.2px;
  line-height: 1.5;
  white-space: nowrap;
}

.footer__credit-logo {
  display: block;
  width: 54px;
  height: 24px;
  flex-shrink: 0;
}

.hero.full-height {
  height: calc(100vh - 114px);
}
@media (max-width: 1500px) {
  .hero.full-height {
    height: auto;
    min-height: 880px;
    padding: 180px 0 80px;
  }
}
@media (max-width: 1440px) {
  .hero.full-height {
    height: auto;
    min-height: 800px;
    padding: 180px 0 80px;
  }
}
@media (max-width: 768px) {
  .hero.full-height {
    min-height: 0;
    padding: 160px 0 64px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  max-height: 1008px;
  min-height: 640px;
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
}
@media (max-width: 1080px) {
  .hero {
    height: auto;
    min-height: 770px;
    padding: 180px 0 60px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 0;
    padding: 120px 0 64px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04) translateX(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation: hero-bg-cycle 18s ease-in-out infinite;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-slide--1 {
  animation-delay: 0s;
}

.hero__bg-slide--2 {
  animation-delay: -9s;
}

@keyframes hero-bg-cycle {
  0% {
    opacity: 0;
    transform: scale(1.04) translateX(8%);
  }
  5% {
    opacity: 0.55;
    transform: scale(1.04) translateX(0);
  }
  45% {
    opacity: 0.55;
    transform: scale(1.12) translateX(0);
  }
  50% {
    opacity: 0;
    transform: scale(1.12) translateX(-8%);
  }
  100% {
    opacity: 0;
    transform: scale(1.04) translateX(8%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-slide {
    animation: none;
    opacity: 0.55;
    transform: none;
  }
  .hero__bg-slide--2 {
    opacity: 0;
  }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 4;
  height: 100%;
  transform: translateZ(0);
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 140px;
  padding-bottom: 120px;
}
@media (max-width: 1500px) {
  .hero__inner {
    padding-top: 124px;
    padding-bottom: 88px;
  }
}
@media (max-width: 1280px) {
  .hero__inner {
    padding-top: 110px;
    padding-bottom: 64px;
  }
}
@media (max-width: 1080px) {
  .hero__inner {
    padding-top: 0;
    padding-bottom: 0;
    gap: 64px;
  }
}

.hero__content {
  max-width: 1093px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 1500px) {
  .hero__content {
    gap: 48px;
  }
}
@media (max-width: 1280px) {
  .hero__content {
    gap: 40px;
  }
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1500px) {
  .hero__heading {
    gap: 32px;
  }
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1500px) {
  .hero__text {
    gap: 24px;
  }
}

.hero__title {
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1080px) {
  .hero__title {
    white-space: normal;
  }
}

.hero__description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  max-width: 748px;
}
@media (max-width: 1500px) {
  .hero__description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 540px;
  }
}
@media (max-width: 1280px) {
  .hero__description {
    font-size: 16px;
    line-height: 1.75;
  }
}
@media (max-width: 768px) {
  .hero__description {
    max-width: 100%;
  }
}

.hero--about .hero__content {
  max-width: 738px;
}

.hero--no-stats .hero__stats {
  display: none;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn--primary {
  background-image: var(--gold-gradient-bright);
}

.hero__stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  transform: translateZ(0);
}
@media (max-width: 1080px) {
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .hero__stats {
    gap: 24px 20px;
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  color: var(--white);
  min-width: 0;
}

.hero__stat-value {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display-typeface);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  color: var(--white);
}
@media (max-width: 1600px) {
  .hero__stat-value {
    font-size: 52px;
  }
}
@media (max-width: 1280px) {
  .hero__stat-value {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .hero__stat-value {
    font-size: 36px;
  }
}

.hero__stat-number {
  font: inherit;
  color: inherit;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: right;
  transform: translateZ(0);
}

.hero__stat-prefix,
.hero__stat-suffix {
  font: inherit;
  color: inherit;
}

.hero__stat-plus {
  font-family: var(--second-typeface);
  font-weight: 200;
  font-size: 1.03em;
  color: var(--gold);
}

.hero__stat-label {
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
}
@media (max-width: 1500px) {
  .hero__stat-label {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 2px;
  }
}
@media (max-width: 768px) {
  .hero__stat-label {
    font-size: 12px;
  }
}

.hero__bg-img--contact {
  opacity: 1;
}

.hero__bg-overlay--contact {
  background: var(--bg-dark);
  opacity: 0.9;
}

.contact-hero {
  height: auto;
  padding: 204px 0 120px;
}
@media (max-width: 1440px) {
  .contact-hero {
    padding: 180px 0 100px;
  }
}
@media (max-width: 1080px) {
  .contact-hero {
    padding: 160px 0 80px;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 64px;
  }
}

.contact-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1280px) {
  .contact-hero__inner {
    gap: 56px;
  }
}
@media (max-width: 1080px) {
  .contact-hero__inner {
    flex-direction: column;
    gap: 24px;
  }
}

.contact-hero__info {
  flex: 1 1 639px;
  max-width: 639px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1080px) {
  .contact-hero__info {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
}

.contact-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero__title {
  color: var(--white);
}

.contact-hero__description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
}
@media (max-width: 768px) {
  .contact-hero__description {
    font-size: 17px;
  }
}

.contact-hero__list {
  display: flex;
  flex-direction: column;
}

.contact-hero__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.contact-hero__item:not(:last-child) {
  border-bottom: 1px solid var(--border-gold-20);
}

.contact-hero__item-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hero__item-label {
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contact-hero__item-value {
  font-family: var(--display-typeface);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.17;
  color: var(--white);
  overflow-wrap: break-word;
  transition: color 0.2s ease;
}

a.contact-hero__item-value:hover {
  color: var(--gold-bright);
}

.contact-hero__item-note {
  font-family: var(--second-typeface);
  font-size: 16px;
  line-height: 1.25;
  color: var(--text-muted);
}

.contact-hero__form {
  flex: 0 0 601px;
  max-width: 601px;
  margin: 0;
}
@media (max-width: 1080px) {
  .contact-hero__form {
    flex: 1 1 auto;
    width: 100%;
    max-width: 601px;
    margin: 0 auto;
  }
}
.contact-hero__form .form {
  gap: 32px;
}
@media (max-width: 1500px) {
  .contact-hero__form .form {
    gap: 16px;
  }
}
.contact-hero__form .form__field {
  gap: 12px;
}
.contact-hero__form .form__submit {
  margin-top: 0;
}
.contact-hero__form .wpcf7-form {
  gap: 32px;
}
@media (max-width: 1500px) {
  .contact-hero__form .wpcf7-form {
    gap: 16px;
  }
}
.contact-hero__form .wpcf7-submit {
  margin-top: 0;
}

.intro-text {
  background-color: var(--bg-dark-4);
  padding: 140px 0;
  text-align: center;
}
@media (max-width: 1500px) {
  .intro-text {
    padding: 108px 0;
  }
}
@media (max-width: 768px) {
  .intro-text {
    padding: 72px 0;
  }
}

.intro-text__inner {
  max-width: 1116px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.intro-text__title {
  color: var(--white);
  max-width: 1116px;
}
@media (max-width: 1500px) {
  .intro-text__title {
    max-width: 656px;
  }
}

.intro-text__description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 960px;
}
@media (max-width: 1500px) {
  .intro-text__description {
    max-width: 846px;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .intro-text__description {
    font-size: 17px;
  }
}

.tabs-block {
  position: relative;
  background-color: var(--bg-darkest);
  padding: 140px 0 121px;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1500px) {
  .tabs-block {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  .tabs-block {
    padding: 72px 0;
  }
}

.tabs-block__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.tabs-block__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabs-block .container {
  position: relative;
  z-index: 2;
}

.tabs-block__inner {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media (max-width: 1500px) {
  .tabs-block__inner {
    gap: 40px;
  }
}
@media (max-width: 1280px) {
  .tabs-block__inner {
    gap: 30px;
  }
}

.tabs-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 1440px) {
  .tabs-block__header {
    gap: 48px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.tabs-block__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.tabs-block__title {
  line-height: 1.25;
  white-space: nowrap;
}
@media (max-width: 1800px) {
  .tabs-block__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .tabs-block__title {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .tabs-block__title {
    white-space: normal;
  }
}

.tabs-block__description {
  flex: 1;
  max-width: 648px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}
@media (max-width: 1500px) {
  .tabs-block__description {
    max-width: 666px;
    margin-bottom: 4px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__description {
    max-width: 100%;
    line-height: 1.625;
    margin-bottom: 0;
  }
}

.tabs-block__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 1440px) {
  .tabs-block__body {
    gap: 48px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__body {
    gap: 24px;
  }
}

.tabs-block__list {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
}
@media (max-width: 1080px) {
  .tabs-block__list {
    display: none;
  }
}

.tabs-block__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 32px;
  font-size: 24px;
  line-height: normal;
  font-family: var(--second-typeface);
  color: var(--overlay-white-32);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s ease;
}
.tabs-block__item:hover {
  color: var(--white);
}
.tabs-block__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--gold-bright);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 2;
}
.tabs-block__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-tint-15) 0%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.tabs-block__item > * {
  position: relative;
  z-index: 3;
}
@media (max-width: 1500px) {
  .tabs-block__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 16px 28px;
  }
}
@media (max-width: 1280px) {
  .tabs-block__item {
    font-size: 18px;
    padding: 16px 20px;
  }
}

.tabs-block__item--active {
  color: var(--gold-bright);
}
.tabs-block__item--active::before {
  transform: translateY(0);
}
.tabs-block__item--active::after {
  transform: translateX(0);
  transition-delay: 0.2s;
}

.tabs-block__item--leaving-down {
  color: var(--overlay-white-32);
}
.tabs-block__item--leaving-down::before {
  transform: translateY(100%);
  transition-delay: 0.2s;
}
.tabs-block__item--leaving-down::after {
  transform: translateX(-100%);
}

.tabs-block__item--leaving-up {
  color: var(--overlay-white-32);
}
.tabs-block__item--leaving-up::before {
  transform: translateY(-100%);
  transition-delay: 0.2s;
}
.tabs-block__item--leaving-up::after {
  transform: translateX(-100%);
}

.tabs-block__item--from-bottom::before {
  transform: translateY(100%);
}

.tabs-block__item--no-anim::before, .tabs-block__item--no-anim::after {
  transition: none !important;
}

.tabs-block__preview {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-gold-30);
  background-color: var(--solutions-card-bg);
}
.tabs-block__preview:not(.tabs-block__preview--slider) {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1080px) {
  .tabs-block__preview {
    flex: none;
    height: auto;
    overflow: hidden;
    border: 0;
    background: none;
    border-radius: 0;
  }
}

.tabs-block__preview-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.tabs-block__preview:not(.tabs-block__preview--slider) .tabs-block__preview-card {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.tabs-block__preview:not(.tabs-block__preview--slider) .tabs-block__preview-card.tabs-block__preview-card--active {
  display: flex;
  flex: 1;
}
@media (max-width: 1080px) {
  .tabs-block__preview-card {
    position: relative;
    display: flex;
    flex-shrink: 0;
    padding: 0;
    min-height: 490px;
    height: 490px;
    overflow: visible;
    border: 0;
    background: none;
    border-radius: 0;
  }
}

.tabs-block__preview-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-height: 0;
  transform-origin: center center;
  transition: transform 0.25s ease;
}
.tabs-block__preview:not(.tabs-block__preview--slider) .tabs-block__preview-card-inner {
  position: absolute;
  inset: 0;
  padding: 47px;
}
@media (max-width: 1500px) {
  .tabs-block__preview:not(.tabs-block__preview--slider) .tabs-block__preview-card-inner {
    padding: 42px;
  }
}
@media (max-width: 1280px) {
  .tabs-block__preview:not(.tabs-block__preview--slider) .tabs-block__preview-card-inner {
    padding: 32px;
  }
}
.tabs-block__preview-card-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1080px) {
  .tabs-block__preview-card-inner {
    padding: 24px;
    min-height: 490px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gold-30);
    background-color: var(--solutions-card-bg);
  }
}

.tabs-block__preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabs-block__preview-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1080px) {
  .tabs-block__preview-content {
    gap: 12px;
  }
}

.tabs-block__preview-title {
  font-family: var(--main-typeface);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--gold-bright);
}
@media (max-width: 1500px) {
  .tabs-block__preview-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__preview-title {
    font-size: 32px;
  }
}

.tabs-block__preview-text {
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: var(--white);
  max-width: 438px;
}
@media (max-width: 1500px) {
  .tabs-block__preview-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__preview-text {
    max-width: none;
    line-height: 1.625;
    font-weight: 400;
  }
}

.tabs-block__preview-arrow {
  position: absolute;
  right: 47px;
  bottom: 47px;
  z-index: 4;
  width: 69px;
  height: 69px;
}
@media (max-width: 1500px) {
  .tabs-block__preview-arrow {
    width: 60px;
    height: 60px;
    right: 40px;
    bottom: 40px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__preview-arrow {
    display: none;
  }
}

.tabs-block__preview-arrow-circle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-gold-30);
  color: var(--gold-bright);
  transition: background 0.2s ease;
  background-color: rgba(233, 184, 59, 0.1);
}
.tabs-block__preview-arrow:hover .tabs-block__preview-arrow-circle {
  background-color: var(--gold-bright);
  color: var(--bg-dark-5);
}

.tabs-block__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 648px;
  min-width: 0;
  gap: 16px;
}
@media (max-width: 1500px) {
  .tabs-block__content {
    max-width: 666px;
  }
}
@media (max-width: 1080px) {
  .tabs-block__content {
    flex: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    gap: 30px;
  }
}

.tabs-block__preview-link {
  display: none;
}
@media (max-width: 1080px) {
  .tabs-block__preview-link {
    display: inline-flex;
    align-self: flex-start;
  }
}

.tabs-block__preview--slider {
  overflow: hidden;
}
.tabs-block__preview--slider .tabs-block__preview-card {
  justify-content: center;
}

.tabs-block__slider-footer {
  display: none;
}
@media (max-width: 1080px) {
  .tabs-block__slider-footer {
    display: flex;
    justify-content: center;
  }
}

.tabs-block__pagination {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--eyebrow-typeface);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.tabs-block__pagination-current {
  color: var(--gold);
}

.tabs-block__pagination-sep,
.tabs-block__pagination-total {
  color: var(--gold);
  opacity: 0.5;
}

.tabs-block__pagination--last .tabs-block__pagination-sep,
.tabs-block__pagination--last .tabs-block__pagination-total {
  opacity: 1;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 72px;
  position: relative;
  background-color: var(--white);
  border-radius: 64px 64px 64px 64px;
  margin: 0;
  overflow: hidden;
  z-index: 3;
}
@media (max-width: 1280px) {
  .story {
    gap: 64px;
  }
}
@media (max-width: 768px) {
  .story {
    border-radius: 32px 32px 32px 32px;
    gap: 40px;
  }
}

.feature-cards {
  padding: 120px 0 0;
}
@media (max-width: 1280px) {
  .feature-cards {
    padding: 80px 0 0;
  }
}
@media (max-width: 768px) {
  .feature-cards {
    padding: 56px 0 0;
  }
}

.feature-cards--standalone {
  padding-bottom: 118px;
}
@media (max-width: 1280px) {
  .feature-cards--standalone {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .feature-cards--standalone {
    padding-bottom: 56px;
  }
}

.feature-cards__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (max-width: 1500px) {
  .feature-cards__inner {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .feature-cards__inner {
    gap: 48px;
  }
}

.feature-cards__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-cards__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1500px) {
  .feature-cards__heading {
    gap: 18px;
  }
}

.feature-cards__header.feature-cards--header-row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}
.feature-cards__header.feature-cards--header-row .feature-cards__heading {
  flex: 1;
}
.feature-cards__header.feature-cards--header-row p {
  flex: 1;
}
@media (max-width: 1080px) {
  .feature-cards__header.feature-cards--header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

.feature-cards__header-text {
  flex: 0 1 647px;
  font-size: 16px;
  line-height: 1.625;
  color: var(--text-muted);
}

.feature-cards__title {
  color: var(--text-primary);
}
@media (max-width: 1800px) {
  .feature-cards__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .feature-cards__title {
    font-size: 32px;
  }
}
.feature-cards__title strong {
  color: var(--gold);
}

.feature-cards__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1500px) {
  .feature-cards__cards {
    gap: 16px;
  }
}

.feature-cards__card {
  flex: 1 1 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid var(--border-gold-50);
  border-radius: 16px;
  min-height: 240px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-cards__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--border-gold-12);
}
@media (max-width: 1080px) {
  .feature-cards__card {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 580px) {
  .feature-cards__card {
    flex-basis: 100%;
  }
}

@media (min-width: 1081px) {
  .feature-cards__card:first-child:nth-last-child(4),
  .feature-cards__card:first-child:nth-last-child(4) ~ .feature-cards__card {
    flex-basis: calc((100% - 24px) / 2);
  }
}
.feature-cards__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-gold-30);
  flex-shrink: 0;
}
.feature-cards__icon img {
  width: 20px;
  height: 20px;
}

.feature-cards__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-cards__card-title {
  font-family: var(--main-typeface);
  font-size: 28px;
  line-height: 1.14;
  color: var(--bg-dark-3);
}
@media (max-width: 1500px) {
  .feature-cards__card-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.feature-cards__card-text {
  font-size: 16px;
  line-height: 1.42;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .feature-cards__card-text {
    font-size: 14px;
    line-height: 22px;
  }
}

.feature-cards--no-highlight .feature-cards__card--highlight {
  display: none;
}

.feature-cards__card--highlight {
  background: linear-gradient(135deg, var(--gold-tint-10) 0%, var(--gold-tint-04) 100%);
  border-color: var(--border-gold-28);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.feature-cards__card--highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--border-gold-20);
}

.feature-cards__quote {
  font-family: var(--main-typeface);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.19;
  color: var(--bg-dark-3);
}

.feature-cards__cta {
  align-self: stretch;
}

.media-text {
  position: relative;
  padding: 0 0 122px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .media-text {
    padding: 0 0 60px;
  }
}
@media (max-width: 768px) {
  .media-text {
    padding: 0 0 40px;
  }
}

.media-text__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 617fr) minmax(0, 645fr);
  gap: 70px;
  align-items: start;
}
@media (max-width: 1280px) {
  .media-text__inner {
    gap: 48px;
  }
}
@media (max-width: 1080px) {
  .media-text__inner {
    grid-template-columns: 1fr;
  }
}

.media-text__photo {
  padding-top: 42px;
}
@media (max-width: 1080px) {
  .media-text__photo {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    padding-top: 0;
  }
}
.media-text__photo img {
  display: block;
  width: 100%;
  max-width: 572px;
  height: auto;
  opacity: 0.05;
}
@media (max-width: 1080px) {
  .media-text__photo img {
    height: 100%;
    object-fit: contain;
  }
}

.media-text__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 612px;
  padding-top: 42px;
}
@media (max-width: 1500px) {
  .media-text__content {
    gap: 16px;
  }
}
@media (max-width: 1080px) {
  .media-text__content {
    padding-top: 0;
    max-width: 100%;
  }
}

.media-text__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-text__title {
  color: var(--bg-dark-3);
}
@media (max-width: 1800px) {
  .media-text__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .media-text__title {
    font-size: 32px;
  }
}
.media-text__title strong {
  color: var(--gold);
}

.media-text__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.media-text__text p {
  line-height: 1.75;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .media-text__text {
    gap: 16px;
  }
}

.media-text__quote {
  position: relative;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-text__quote-text {
  font-family: var(--main-typeface);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  color: var(--bg-dark-3);
}
@media (max-width: 768px) {
  .media-text__quote-text {
    font-size: 24px;
  }
}

.media-text__quote-author {
  font-family: var(--second-typeface);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.204em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-block {
  position: relative;
  background-color: var(--bg-darkest);
  padding: 98px 0 162px;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1500px) {
  .timeline-block {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .timeline-block {
    padding: 56px 0;
  }
}

.timeline-block__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.timeline-block__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-block .container {
  position: relative;
  z-index: 2;
}

.timeline-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1080px) {
  .timeline-block__inner {
    align-items: start;
    flex-direction: column;
  }
}

.timeline-block__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 526px;
}

@media (max-width: 1080px) {
  .timeline-block__intro {
    max-width: 100%;
  }
}
.timeline-block__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-block__title {
  font-family: var(--main-typeface);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
}
@media (max-width: 1800px) {
  .timeline-block__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .timeline-block__title {
    font-size: 32px;
  }
}

.timeline-block__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timeline-block__text p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .timeline-block__text {
    gap: 16px;
  }
  .timeline-block__text p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .timeline-block__text p {
    font-size: 16px;
  }
}

.timeline-block__photo {
  position: relative;
  flex-shrink: 0;
  width: 648px;
}
@media (max-width: 1500px) {
  .timeline-block__photo {
    width: 540px;
  }
}
@media (max-width: 1280px) {
  .timeline-block__photo {
    width: 448px;
  }
}
@media (max-width: 1080px) {
  .timeline-block__photo {
    width: 100%;
    max-width: 520px;
    align-self: center;
  }
}
.timeline-block__photo::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 4%;
  width: 76%;
  aspect-ratio: 646/539;
  background: url("../img/icons/4ever-decor.svg") no-repeat center/contain;
  filter: invert(1);
  opacity: 0.05;
  pointer-events: none;
}
.timeline-block__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 86%;
  margin-left: auto;
  height: auto;
}
.timeline-block__photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(5, 16, 30, 0) 0%, #05101e 100%);
  pointer-events: none;
}

.cards-block {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1280px) {
  .cards-block {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .cards-block {
    padding: 56px 0;
  }
}

.cards-block--dark {
  background-color: var(--bg-dark);
}

.cards-block--image {
  background-color: var(--bg-dark);
}

.cards-block--light {
  background-color: var(--white);
  color: var(--text-primary);
}
.cards-block--light .cards-block__title,
.cards-block--light .cards-block__cell-title,
.cards-block--light .cards-block__cta-title {
  color: var(--text-primary);
}

.cards-block__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.cards-block__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-block .container {
  position: relative;
  z-index: 2;
}

.cards-block__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (max-width: 1500px) {
  .cards-block__inner {
    gap: 32px;
  }
}

.cards-block__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 619px;
}
@media (max-width: 1500px) {
  .cards-block__header {
    gap: 16px;
    max-width: 100%;
  }
}

.cards-block__title {
  color: var(--white);
}
@media (max-width: 1800px) {
  .cards-block__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .cards-block__title {
    font-size: 32px;
  }
}

.cards-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-gold-14);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .cards-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .cards-block__grid {
    grid-template-columns: 1fr;
  }
}

.cards-block__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 34px 32px;
  border-right: 1px solid var(--border-gold-12);
  border-bottom: 1px solid var(--border-gold-12);
  min-height: 250px;
  transition: background 0.25s ease;
}
.cards-block__cell:hover {
  background-color: var(--gold-bright-04);
}
.cards-block__cell:nth-child(3n) {
  border-right: 0;
}
.cards-block__cell:nth-last-child(-n+3) {
  border-bottom: 0;
}
@media (max-width: 1080px) {
  .cards-block__cell:nth-child(3n) {
    border-right: 1px solid var(--border-gold-12);
  }
  .cards-block__cell:nth-child(2n) {
    border-right: 0;
  }
  .cards-block__cell:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--border-gold-12);
  }
  .cards-block__cell:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 580px) {
  .cards-block__cell {
    border-right: 0 !important;
  }
  .cards-block__cell:not(:last-child) {
    border-bottom: 1px solid var(--border-gold-12) !important;
  }
}

.cards-block__cell-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards-block__cell-label {
  display: block;
  font-family: var(--second-typeface);
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.cards-block__cell-title {
  font-family: var(--main-typeface);
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}

.cards-block__cell-text {
  font-size: 16px;
  line-height: 1.375;
  color: var(--text-muted);
}

.cards-block__cell--cta {
  background-color: var(--bg-dark-6);
  justify-content: center;
}
.cards-block__cell--cta:hover {
  background-color: var(--bg-dark-6);
}

.cards-block__cta-title {
  font-family: var(--main-typeface);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}

.card-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background-color: var(--bg-dark);
  padding: 86px 0 120px;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1500px) {
  .card-slider {
    gap: 32px;
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .card-slider {
    gap: 40px;
    padding: 56px 0;
  }
}

.card-slider__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.card-slider__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-slider .container {
  position: relative;
  z-index: 2;
}

.card-slider__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .card-slider__inner {
    gap: 24px;
  }
}

.card-slider__header {
  display: flex;
  flex-direction: column;
}

.card-slider__heading {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 900px;
}

.card-slider__title {
  font-family: var(--main-typeface);
  font-weight: 300;
  color: var(--white);
}
@media (max-width: 1800px) {
  .card-slider__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .card-slider__title {
    font-size: 32px;
  }
}

.card-slider__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1320px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-muted);
}
.card-slider__intro p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 1500px) {
  .card-slider__intro {
    gap: 16px;
  }
  .card-slider__intro p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .card-slider__intro {
    font-size: 16px;
  }
  .card-slider__intro p {
    font-size: 16px;
  }
}

.card-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright-40);
  background-color: var(--overlay-white-05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.card-slider__arrow img {
  width: 24px;
  height: 24px;
}
.card-slider__arrow:hover {
  background-color: var(--gold-bright-10);
}
.card-slider__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.card-slider__arrow--next img {
  transform: scaleX(-1);
}

.card-slider__slider {
  position: relative;
  z-index: 2;
}

.card-slider__swiper {
  position: relative;
  overflow: hidden;
}

.card-slider__track {
  align-items: stretch;
}

.card-slider .card-slider__track .slider-card {
  width: 376px;
}
@media (max-width: 1500px) {
  .card-slider .card-slider__track .slider-card {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .card-slider .card-slider__track .slider-card {
    width: 82vw;
  }
}

.slider-card {
  position: relative;
  flex-shrink: 0;
}

.slider-card__inner {
  position: relative;
  height: 480px;
  border: 1px solid var(--border-gold-20);
  border-radius: 16px;
  background-color: var(--form-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media (max-width: 1500px) {
  .slider-card__inner {
    height: 420px;
  }
}

.slider-card.is-peek .slider-card__inner {
  transform: scale(0.86);
  opacity: 0.3;
}

.slider-card__photo {
  padding: 24px;
}
.slider-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.slider-card__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(2, 20, 44, 0) 0%, rgba(2, 20, 44, 0.8) 42%, var(--slider-card-fade) 58%);
  pointer-events: none;
}

.slider-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 32px 32px;
}

.slider-card__name {
  font-family: var(--main-typeface);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.5;
  color: var(--gold-bright);
}
@media (max-width: 1500px) {
  .slider-card__name {
    font-size: 28px;
  }
}

.slider-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-muted);
}

.slider-card__role {
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1500px) {
  .slider-card__role {
    font-size: 16px;
  }
}

.slider-card__nmls {
  font-size: 16px;
  line-height: 1.25;
}

.card-slider__arrow--prev {
  left: calc((100% - 1320px) / 2 - 72px);
}

.card-slider__arrow--next {
  right: calc((100% - 1320px) / 2 - 72px);
}

@media (max-width: 1440px) {
  .card-slider__arrow--prev {
    left: 16px;
  }
  .card-slider__arrow--next {
    right: 16px;
  }
}
@media (max-width: 1280px) {
  .card-slider__arrow--prev {
    left: 4px;
  }
  .card-slider__arrow--next {
    right: 4px;
  }
}
@media (max-width: 1024px) {
  .card-slider__arrow {
    display: none;
  }
}
.testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background-color: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1500px) {
  .testimonials {
    gap: 32px;
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .testimonials {
    gap: 40px;
    padding: 56px 0;
  }
}

.testimonials__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1500px) {
  .testimonials__inner {
    gap: 24px;
  }
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.testimonials__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1500px) {
  .testimonials__header {
    gap: 16px;
  }
}

.testimonials__title {
  color: var(--white);
}
@media (max-width: 1800px) {
  .testimonials__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 32px;
  }
}

.testimonials__intro {
  max-width: 1320px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .testimonials__intro {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .testimonials__intro {
    font-size: 16px;
  }
}

.testimonials__slider {
  position: relative;
  z-index: 2;
}

.testimonials__viewport {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  align-items: stretch;
}

.testimonials .testimonials__track .testimonial-card {
  width: 376px;
}
@media (max-width: 1500px) {
  .testimonials .testimonials__track .testimonial-card {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .testimonials .testimonials__track .testimonial-card {
    width: 82vw;
  }
}

.testimonial-card {
  position: relative;
  flex-shrink: 0;
}

.testimonial-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: 480px;
  padding: 32px;
  border: 1px solid var(--border-gold-20);
  border-radius: 16px;
  background-color: var(--form-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media (max-width: 1500px) {
  .testimonial-card__inner {
    height: 384px;
  }
}

.testimonial-card.is-peek .testimonial-card__inner {
  transform: scale(0.86);
  opacity: 0.3;
}

.testimonial-card__quote {
  font-family: var(--second-typeface);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .testimonial-card__quote {
    font-size: 16px;
    line-height: 28px;
  }
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1500px) {
  .testimonial-card__footer {
    gap: 8px;
  }
}

.testimonial-card__name {
  font-family: var(--main-typeface);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.17;
  color: var(--gold-bright);
}
@media (max-width: 1500px) {
  .testimonial-card__name {
    font-size: 24px;
  }
}

.testimonial-card__role {
  font-family: var(--second-typeface);
  font-size: 16px;
  line-height: 1.25;
  color: var(--text-muted);
}
@media (max-width: 1500px) {
  .testimonial-card__role {
    font-size: 14px;
    line-height: 1.43;
  }
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright-40);
  background-color: var(--overlay-white-05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.testimonials__arrow img {
  width: 24px;
  height: 24px;
}
.testimonials__arrow:hover {
  background-color: var(--gold-bright-10);
}

.testimonials__arrow--next img {
  transform: scaleX(-1);
}

.testimonials__arrow--prev {
  left: calc((100% - 1320px) / 2 - 72px);
}

.testimonials__arrow--next {
  right: calc((100% - 1320px) / 2 - 72px);
}

@media (max-width: 1440px) {
  .testimonials__arrow--prev {
    left: 16px;
  }
  .testimonials__arrow--next {
    right: 16px;
  }
}
@media (max-width: 1280px) {
  .testimonials__arrow--prev {
    left: 4px;
  }
  .testimonials__arrow--next {
    right: 4px;
  }
}
@media (max-width: 1024px) {
  .testimonials__arrow {
    display: none;
  }
}
.content-image {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1280px) {
  .content-image {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .content-image {
    padding: 56px 0;
  }
}

.content-image__row {
  display: flex;
  align-items: center;
  gap: 132px;
}
.content-image__row + .content-image__row {
  margin-top: 120px;
}
@media (max-width: 1440px) {
  .content-image__row {
    gap: 64px;
  }
}
@media (max-width: 1280px) {
  .content-image__row {
    gap: 48px;
  }
  .content-image__row + .content-image__row {
    margin-top: 80px;
  }
}
@media (max-width: 1080px) {
  .content-image__row {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .content-image__row + .content-image__row {
    margin-top: 56px;
  }
}

.content-image__row--right {
  flex-direction: row-reverse;
}
@media (max-width: 1080px) {
  .content-image__row--right {
    flex-direction: column;
  }
}

.content-image__media {
  position: relative;
  flex: 0 0 540px;
  width: 540px;
  height: 580px;
  padding: 24px;
}
.content-image__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.content-image__media::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 19%;
  height: 39%;
  border-top: 1px solid rgba(233, 184, 59, 0.5);
  border-right: 1px solid rgba(233, 184, 59, 0.5);
  border-top-right-radius: 6px;
  pointer-events: none;
}
.content-image__media::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
@media (max-width: 1500px) {
  .content-image__media {
    height: 500px;
  }
}
@media (max-width: 1280px) {
  .content-image__media {
    flex-basis: 488px;
    width: 488px;
    height: 524px;
  }
}
@media (max-width: 1080px) {
  .content-image__media {
    flex-basis: auto;
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .content-image__media {
    height: 360px;
    padding: 16px;
  }
  .content-image__media::after {
    inset: 16px;
  }
}

.content-image__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.content-image__frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19%;
  width: 1px;
  height: 62%;
  background-color: rgba(233, 184, 59, 0.5);
}
.content-image__frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 83%;
  height: 16%;
  border-bottom: 1px solid rgba(233, 184, 59, 0.5);
  border-right: 1px solid rgba(233, 184, 59, 0.5);
  border-bottom-right-radius: 6px;
}

.content-image__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1500px) {
  .content-image__content {
    gap: 24px;
  }
}

.content-image__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-image__title {
  color: var(--gold-bright);
}
@media (max-width: 1800px) {
  .content-image__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .content-image__title {
    font-size: 32px;
  }
}
@media (max-width: 1500px) {
  .content-image__title {
    font-size: 40px;
  }
}

.content-image__group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1500px) {
  .content-image__group {
    gap: 16px;
  }
}

.content-image__lead {
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
}
@media (max-width: 1500px) {
  .content-image__lead {
    font-size: 20px;
  }
}

.content-image__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.content-image__list-label {
  font-family: var(--second-typeface);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.content-image__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-image__list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}
.content-image__list-item::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background-color: transparent;
}

.content-image__link {
  align-self: flex-start;
  max-width: 100%;
}
@media (max-width: 580px) {
  .content-image__link {
    align-self: stretch;
    height: auto;
    min-height: 56px;
    padding-top: 12px;
    padding-bottom: 12px;
    white-space: normal;
    text-align: center;
  }
}

.text-image {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 120px 0;
}
@media (min-width: 1800px) {
  .text-image {
    padding: 140px 0;
  }
}
@media (max-width: 1280px) {
  .text-image {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .text-image {
    padding: 56px 0;
  }
}

.text-image__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.text-image__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-image .container {
  position: relative;
  z-index: 1;
}

.text-image__inner {
  display: flex;
  align-items: center;
  gap: 110px;
}
@media (max-width: 1280px) {
  .text-image__inner {
    gap: 64px;
  }
}
@media (max-width: 1080px) {
  .text-image__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}

.text-image--media-right .text-image__inner {
  flex-direction: row-reverse;
}
@media (max-width: 1080px) {
  .text-image--media-right .text-image__inner {
    flex-direction: column;
  }
}

.text-image__media {
  flex: 0 0 561px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1280px) {
  .text-image__media {
    flex-basis: 460px;
  }
}
@media (max-width: 1080px) {
  .text-image__media {
    flex-basis: auto;
    width: 100%;
  }
}
.text-image__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1080px) {
  .text-image__media img {
    width: auto;
  }
}

.text-image__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-image__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-image__title {
  font-family: var(--main-typeface);
  font-weight: 300;
  font-size: 64px;
  line-height: 1.25;
  color: var(--white);
}
@media (max-width: 1280px) {
  .text-image__title {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .text-image__title {
    font-size: 40px;
  }
}

.text-image__text {
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .text-image__text {
    font-size: 16px;
  }
}

.slider-block {
  position: relative;
  background-color: var(--bg-dark-4);
  border-top: 1px solid var(--gold-tint-10);
  border-bottom: 1px solid var(--gold-tint-10);
  padding: 24px 0;
  overflow: hidden;
}

.slider-block__inner {
  max-width: 1695px;
  margin: 0 auto;
  padding: 0 24px;
}

.slider-block__track {
  align-items: center;
  height: 32px;
}

.slider-block:not(.slider-block--running) .slider-block__track {
  justify-content: space-between;
  gap: 24px;
}

.slider-block:not(.slider-block--running) .slider-block__logo {
  width: auto;
}

.slider-block__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.slider-block__logo:hover {
  opacity: 0.85;
}
.slider-block__logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.cta-text {
  position: relative;
  background-color: var(--white);
  border-radius: 64px;
  padding: 150px 0;
  overflow: hidden;
  color: var(--text-primary);
}
@media (max-width: 1500px) {
  .cta-text {
    padding: 100px 0;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .cta-text {
    padding: 72px 0;
    border-radius: 32px;
  }
}

.cta-text .container {
  position: relative;
  z-index: 2;
}

.cta-text__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
.cta-text__inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1154px;
  aspect-ratio: 1154/963;
  background: url("../img/icons/4ever-decor.svg") no-repeat center/contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1500px) {
  .cta-text__inner::before {
    width: 660px;
  }
}
@media (max-width: 1500px) {
  .cta-text__inner {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .cta-text__inner {
    gap: 28px;
  }
}

.cta-text__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
@media (max-width: 1500px) {
  .cta-text__text {
    gap: 18px;
  }
}

.cta-text__title {
  color: var(--text-primary);
  max-width: 1330px;
}
@media (max-width: 1800px) {
  .cta-text__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .cta-text__title {
    font-size: 32px;
  }
}

.cta-text__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 1000px;
}

.contact {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
}
@media (max-width: 1280px) {
  .contact {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 56px 0;
  }
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
@media (max-width: 1500px) {
  .contact__inner {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .contact__inner {
    gap: 24px;
  }
}

.contact__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1500px) {
  .contact__header {
    gap: 16px;
  }
}

.contact__title {
  color: var(--white);
  white-space: nowrap;
}
@media (max-width: 1800px) {
  .contact__title {
    font-family: var(--main-typeface);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.083;
  }
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .contact__title {
    white-space: normal;
  }
}

.contact__description {
  font-size: 16px;
  line-height: 1.625;
  color: var(--text-muted);
  max-width: 750px;
}

.contact__form-wrap {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--form-bg);
  border: 1px solid var(--border-gold-20);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media (max-width: 1500px) {
  .contact__form-wrap {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .contact__form-wrap {
    padding: 32px 20px;
  }
}
.contact__form-wrap .btn--primary,
.contact__form-wrap .wpcf7-submit {
  background-image: var(--gold-gradient-flat);
}

.contact__form-wrap .wpcf7-spinner {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 16px;
  background-color: rgba(0, 13, 30, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.contact__form-wrap .submitting .wpcf7-spinner {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s;
}

.contact__form-wrap .wpcf7-spinner::before,
.contact__form-wrap .wpcf7-spinner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94px;
  height: 94px;
  margin: 0;
  border-radius: 50%;
  background-color: transparent;
  transform: translate(-50%, -50%);
}

.contact__form-wrap .wpcf7-spinner::before {
  width: 90px;
  height: 90px;
  border: 2px solid var(--gold-bright-10);
  animation: none;
}

.contact__form-wrap .wpcf7-spinner::after {
  background: conic-gradient(from 90deg, var(--gold-bright) 0deg, rgba(233, 184, 59, 0) 280deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  animation: cf7-spin 0.9s linear infinite;
}

@keyframes cf7-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.contact__success {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  padding: 40px;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (max-width: 768px) {
  .contact__success {
    padding: 32px 20px;
  }
}

.contact__form-wrap.is-sent .contact__success,
.contact__form-wrap:has(.wpcf7-form.sent) .contact__success {
  opacity: 1;
  visibility: visible;
}

.contact__form-wrap.is-sent .form,
.contact__form-wrap.is-sent .wpcf7-form,
.contact__form-wrap:has(.wpcf7-form.sent) .wpcf7-form {
  visibility: hidden;
}

.contact__form-wrap.is-sent .wpcf7-response-output,
.contact__form-wrap:has(.wpcf7-form.sent) .wpcf7-response-output {
  display: none;
}

.contact__success-box {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 140px 40px 32px;
  border: 1px solid rgba(233, 184, 59, 0.3);
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__success-box {
    padding: 56px 16px 24px;
  }
}

.contact__success-main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 474px;
}

.contact__success-title {
  font-family: var(--main-typeface);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.17;
  color: var(--white);
}
.contact__success-title span {
  color: var(--gold-bright);
}
@media (max-width: 768px) {
  .contact__success-title {
    font-size: 36px;
  }
}

.contact__success-text {
  font-family: var(--second-typeface);
  font-size: 16px;
  line-height: 1.625;
  color: var(--text-muted);
}

.contact__success-note {
  font-family: var(--second-typeface);
  font-size: 12px;
  line-height: 1.625;
  color: var(--text-muted);
}

.contact__success-phone {
  color: var(--gold-bright);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.contact__success-phone:hover {
  color: var(--gold);
}

.error-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 200px 0 120px;
}
@media (max-width: 1800px) {
  .error-404 {
    padding: 80px 0;
  }
}
@media (max-width: 1500px) {
  .error-404 {
    padding: 60px 0;
  }
}

.error-404 .container {
  position: relative;
  z-index: 4;
}

.error-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-404__code {
  font-family: var(--main-typeface);
  font-weight: 500;
  font-size: 460px;
  line-height: 1;
  color: var(--gold-bright);
  text-shadow: 6px 6px 8px rgba(1, 12, 27, 0.9);
}
@media (max-width: 1800px) {
  .error-404__code {
    font-size: 280px;
  }
}
@media (max-width: 1280px) {
  .error-404__code {
    font-size: 310px;
  }
}
@media (max-width: 1080px) {
  .error-404__code {
    font-size: 280px;
  }
}
@media (max-width: 768px) {
  .error-404__code {
    font-size: 200px;
  }
}
@media (max-width: 580px) {
  .error-404__code {
    font-size: 160px;
  }
}
@media (max-width: 480px) {
  .error-404__code {
    font-size: 140px;
  }
}
@media (max-width: 360px) {
  .error-404__code {
    font-size: 116px;
  }
}

.error-404__text {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-top: 60px;
}
@media (max-width: 1800px) {
  .error-404__text {
    gap: 32px;
    margin-top: 48px;
  }
}
@media (max-width: 1080px) {
  .error-404__text {
    gap: 28px;
    margin-top: 44px;
  }
}
@media (max-width: 768px) {
  .error-404__text {
    gap: 24px;
    margin-top: 28px;
  }
}
@media (max-width: 480px) {
  .error-404__text {
    gap: 16px;
    margin-top: 20px;
  }
}

.error-404__title {
  font-family: var(--main-typeface);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 1500px) {
  .error-404__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .error-404__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .error-404__title {
    font-size: 32px;
  }
}

.error-404__description {
  max-width: 640px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
}
@media (max-width: 1500px) {
  .error-404__description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .error-404__description {
    font-size: 16px;
  }
}

.error-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 68px;
}
@media (max-width: 1800px) {
  .error-404__actions {
    margin-top: 52px;
  }
}
@media (max-width: 580px) {
  .error-404__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .error-404__actions {
    margin-top: 28px;
    max-width: 100%;
  }
}

.error-404 .btn--primary {
  background-image: var(--gold-gradient-bright);
}

.legal {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--white);
  padding-bottom: 160px;
}
@media (max-width: 1080px) {
  .legal {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .legal {
    padding-bottom: 80px;
  }
}

.legal__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 920px;
  z-index: 1;
  pointer-events: none;
}

.legal__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.legal__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 13, 30, 0.15) 0%, rgba(0, 13, 30, 0.4) 35%, var(--bg-dark) 88%);
}

.legal .container {
  position: relative;
  z-index: 2;
}

.legal__header {
  text-align: center;
  padding-top: 210px;
  padding-bottom: 48px;
}
@media (max-width: 1080px) {
  .legal__header {
    padding-top: 180px;
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .legal__header {
    padding-bottom: 32px;
  }
}

.legal__title {
  font-family: var(--main-typeface);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .legal__title {
    font-size: 44px;
  }
}

.legal__meta {
  margin-top: 24px;
  font-family: var(--eyebrow-typeface);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal__content {
  max-width: 1000px;
  margin: 0 auto;
}

.legal__content > * {
  margin-top: 24px;
}

.legal__content > *:first-child {
  margin-top: 0;
}

.legal__content h2 {
  margin-top: 64px;
  font-family: var(--main-typeface);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.14;
  color: var(--white);
}
@media (max-width: 768px) {
  .legal__content h2 {
    margin-top: 48px;
    font-size: 24px;
  }
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content h2 + * {
  margin-top: 16px;
}

.legal__content .legal__article {
  margin-top: 64px;
  font-family: var(--eyebrow-typeface);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .legal__content .legal__article {
    margin-top: 48px;
  }
}

.legal__content .legal__article + h2 {
  margin-top: 16px;
}

.legal__content p,
.legal__content li {
  font-family: var(--second-typeface);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.legal__content ul {
  list-style: disc;
  padding-left: 24px;
}

.legal__content li:not(:last-child) {
  margin-bottom: 8px;
}

.legal__content strong {
  color: var(--white);
  font-weight: 600;
}

.legal__content a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/*# sourceMappingURL=style.min.css.map */
