/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-style: normal;
  background: #FFFFFF;
  color: #181717;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

ul {
  list-style: none;
}

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

.lwr_page .container {
  width: min(88%, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
}

/* ===== BUTTONS ===== */
.lwr_page .btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.19;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lwr_page .btn:hover {
  opacity: 0.85;
}

.btn--login {
  padding: 0.69vw 1vw;
  background: transparent;
  border: 1px solid #FB8C27;
  border-radius: 20px;
  color: #FB8C27;
}

.btn--register {
  padding: 0.69vw 1vw;
  background: #FB8C27;
  border-radius: 20px;
  color: #FFFFFF;
}

.btn--outline {
  padding: 1.1vw 1.67vw;
  background: #E2E4D6;
  border: 2px solid #646B41;
  border-radius: 40px;
  color: #646B41;
  width: 100%;
  max-width: 294px;
}

.btn--filled {
  padding: 1.1vw 1.67vw;
  background: #FB8C27;
  border-radius: 40px;
  color: #FFFFFF;
  width: 100%;
  max-width: 294px;
}

.btn--card {
  padding: 0.69vw 1vw;
  background: #FB8C27;
  border-radius: 20px;
  color: #FFFFFF;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 700;
}

.btn--submit,
.btn--send {
  padding: 0.42vw 2.08vw;
  background: #FB8C27;
  border-radius: 30px;
  color: #FFFFFF;
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
}

.btn--login-footer {
  padding: 0 clamp(16px, 2.2vw, 32px);
  min-height: clamp(32px, 3.89vw, 56px);
  background: #FFFFFF;
  border-radius: clamp(16px, 1.94vw, 28px);
  color: #FB8C27;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(9px, 1.18vw, 17px);
}

.btn--register-footer {
  padding: 0 clamp(16px, 2.2vw, 32px);
  min-height: clamp(32px, 3.89vw, 56px);
  background: #FB8C27;
  border-radius: clamp(16px, 1.94vw, 28px);
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(9px, 1.18vw, 17px);
}

/* ===== HEADER ===== */
.lwr_page .header {
  position: absolute;
  top: max(16px, 3.05vw);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
}

.header__wrap {
  width: calc(100% - 8.34vw);
  margin: 0 auto;
  padding: 0;
}

.header__bar {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #CFD3BB;
  border-radius: 2.78vw;
  padding: 0.56vw 1.11vw;
  min-height: max(50px, 4.58vw);
}

.header__row {
  margin: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header__logo-img {
  width: max(64px, 8.33vw);
  height: auto;
  max-width: 100%;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.67vw;
  width: 100%;
  padding: 0.5vw 0;
}

.header__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: max(12px, 1.06vw);
  line-height: 1.4;
  color: #181717;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.56vw;
  min-width: 0;
}

.header__actions .btn {
  padding: 0.69vw 1vw;
  font-size: max(11px, 0.97vw);
  border-radius: 1.39vw;
}

.header__burger-col {
  display: none;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 1px;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-height: max(480px, 72.07vw);
  padding-bottom: clamp(48px, 6vw, 90px);
  overflow-x: clip;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1400 / 1009;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #CFD3BB -33.25%, #E7E9DD 26.29%, rgba(255, 255, 255, 0) 85.83%);
  z-index: 1;
}

.hero__map-wrap {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

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

.hero__mockup {
  position: relative;
  z-index: 3;
  width: min(90%, 28.4vw);
  margin: 0 auto 1.5vw;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
}

.hero__mockup-glass {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.5px);
  border-radius: clamp(12px, 1.39vw, 20px);
  padding: 1.11vw;
}

.hero__mockup-img {
  width: 100%;
  height: auto;
  border-radius: 0.56vw;
}

.hero__mockup-img--mobile {
  display: none;
}

.hero__mockup--left,
.hero__mockup--center,
.hero__mockup--right {
  width: min(90%, 28.4vw);
}

.hero__mockup--center .hero__mockup-glass,
.hero__mockup--center .hero__mockup-img {
  max-width: 100%;
}

.hero__container {
  position: relative;
  z-index: 4;
  order: -1;
  padding-top: 14.6vw;
  padding-bottom: 3vw;
  box-sizing: border-box;
}

.hero__container .col-xs-12 {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: max(20px, 3.33vw);
  line-height: 1.1;
  text-align: center;
  color: #181717;
  margin-bottom: 1.74vw;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.hero__subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: max(14px, 1.39vw);
  line-height: 1.35;
  text-align: center;
  color: #000000;
  margin: 0 auto 2.6vw;
  max-width: 33.8vw;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: max(6px, 0.56vw);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero__actions .btn--outline,
.hero__actions .btn--filled {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  padding: max(10px, 1.1vw) max(16px, 2vw);
  font-size: max(11px, 1.11vw);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  min-height: max(40px, 3.54vw);
  border-radius: max(28px, 2.78vw);
  box-sizing: border-box;
  letter-spacing: 0.02em;
}

.hero__actions .btn--outline {
  background: #FB8C27;
  border-color: #FB8C27;
  color: #FFFFFF;
}

/* ===== REGIONS ===== */
.regions {
  margin-top: clamp(60px, 10vw, 160px);
  padding-top: clamp(48px, 5.5vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(12px, 1.5vw, 24px);
  position: relative;
  overflow: hidden;
  min-height: max(420px, 54vw);
}

.regions__bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 100%);
  top: clamp(0px, 0vw, 0px);
  bottom: clamp(72px, 9vw, 128px);
  height: auto;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

.regions .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(24px, 3vw, 48px);
}

.regions__row {
  margin-bottom: 1.11vw;
}

.region-card {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 2px 4px 20px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2.22vw 2.78vw;
  min-height: clamp(140px, 12.15vw, 175px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.67vw;
  margin-bottom: 1.11vw;
}

.region-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.2;
  color: #181717;
}

.region-card .btn--card {
  align-self: flex-start;
}

.region-card--light {
  background: rgba(255, 255, 255, 0);
  box-shadow: 2px 4px 16px 2px rgba(0, 0, 0, 0.04);
}

/* ===== ABOUT + ACCESS ===== */
.about-access {
  position: relative;
  padding-top: max(16px, 2vw);
  padding-bottom: 4vw;
  overflow-x: clip;
}

.about-access__bg {
  position: absolute;
  inset: -7vw 1.39vw 0;
  background: linear-gradient(239.16deg, rgba(100, 107, 65, 0.8) 0.72%, rgba(227, 229, 218, 0) 57.81%, rgba(164, 168, 142, 0.5) 90.22%);
  border-radius: 14px;
  z-index: 0;
}

.about-access__bg::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 20%;
  width: 48.5%;
  height: 45%;
  background: radial-gradient(86.63% 81.63% at 39.23% 41.72%, rgba(251, 140, 39, 0.2) 0%, rgba(227, 229, 218, 0) 51.44%);
  pointer-events: none;
}

.about-access .container {
  position: relative;
  z-index: 1;
}

.about-access__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.78vw, 40px);
  line-height: 1.1;
  text-align: center;
  color: #181717;
  margin-bottom: 3.3vw;
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
}

.about-access__top {
  margin-bottom: 4vw;
}

.about-access__list-col {
  container-type: inline-size;
  container-name: about-access-list;
}

.about-access__list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.8cqi, 32px);
  padding-top: clamp(10px, 3.6cqi, 28px);
}

.about-access__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2.2cqi, 20px);
}

.about-access__icon {
  flex-shrink: 0;
  width: clamp(24px, 5.4cqi, 44px);
  height: clamp(24px, 5.4cqi, 44px);
  background: #646B41;
  border-radius: 4px;
}

.about-access__icon--img {
  width: clamp(24px, 5.4cqi, 44px);
  height: auto;
  background: none;
  border-radius: 0;
  object-fit: contain;
}

.about-access__text-main {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3.3cqi, 20px);
  line-height: 1.4;
  color: #181717;
  margin-bottom: 0.35em;
}

.about-access__text-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3.3cqi, 20px);
  line-height: 1.4;
  color: #181717;
  opacity: 0.6;
}

.about-access__devices {
  position: relative;
  padding-top: 1%;
  min-height: clamp(140px, 18vw, 220px);
  max-width: 70%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-access__laptop {
  background: #FFFFFF;
  border: 1px solid #CFD3BB;
  border-radius: 0.63vw;
  padding: 0.5vw;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.about-access__laptop-img {
  width: 100%;
  border-radius: 0.28vw;
}

.about-access__phone {
  display: block;
  position: absolute;
  right: 10%;
  top: 0;
  transform: translateY(-18%);
  width: 22%;
  margin: 0;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #CFD3BB;
  box-shadow: 0.14vw 0.21vw 0.42vw rgba(100, 107, 65, 0.6);
  backdrop-filter: blur(1px);
  border-radius: 0.56vw;
  padding: 0.4vw;
}

.about-access__phone-img {
  width: 100%;
  border-radius: 0.21vw;
}

@media (min-width: 993px) {
  .about-access__top > .col-lg-7 > .about-access__devices {
    padding-top: 2%;
    min-height: clamp(140px, 18vw, 220px);
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .about-access__top > .col-lg-7 .about-access__phone {
    width: 27%;
  }
}

.access__block {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  backdrop-filter: blur(2px);
  border-radius: 12px;
  padding: clamp(24px, 3.33vw, 48px);
}

.access__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.78vw, 40px);
  line-height: 1.1;
  color: #181717;
  margin-bottom: clamp(16px, 2.2vw, 28px);
}

.access__note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.2;
  color: #181717;
}

.access__form-wrap {
  display: flex;
  flex-direction: column;
}

.access__tabs {
  display: flex;
  gap: clamp(6px, 0.56vw, 8px);
  margin-bottom: 1.67vw;
}

.access__tab {
  flex: 1;
  min-width: 0;
  padding: 0.83vw 1.67vw;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  border: none;
  cursor: pointer;
  height: clamp(40px, 3.19vw, 46px);
  transition: background 0.2s, color 0.2s;
}

.access__tab--active {
  background: #646B41;
  color: #FFFFFF;
}

.access__tab:not(.access__tab--active) {
  background: rgba(100, 107, 65, 0.2);
  color: rgba(100, 107, 65, 0.6);
}

.access__form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.39vw, 20px);
}

.access__field {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.56vw, 8px);
}

.access__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.19;
  color: #181717;
}

.access__input {
  width: 100%;
  height: clamp(42px, 3.19vw, 46px);
  background: #FFFFFF;
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 12px;
  padding: 0 1.67vw;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: #181717;
}

.access__input::placeholder {
  color: #D9D9D9;
}

.access__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: clamp(42px, 3.33vw, 48px);
  background: #FFFFFF;
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 12px;
  padding: 0 1.67vw;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.access__select-dropdown {
  position: relative;
  z-index: 12;
}

.access__select-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.access__select-dropdown.is-open .access__select-menu {
  display: block;
}

.access__select-dropdown.is-open .access__select-arrow {
  transform: rotate(180deg);
}

.access__select-dropdown.is-disabled .access__select {
  pointer-events: none;
  cursor: default;
  background: rgba(100, 107, 65, 0.06);
}

.access__select-dropdown.is-disabled .access__select-text {
  color: #181717;
}

.access__select-option {
  display: block;
  width: 100%;
  padding: clamp(10px, 1.11vw, 12px) 1.67vw;
  border: 0;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: #181717;
  text-align: left;
  cursor: pointer;
}

.access__select-option:hover {
  background: rgba(100, 107, 65, 0.08);
}

.access__select-option:focus-visible {
  outline: 2px solid rgba(251, 140, 39, 0.6);
  outline-offset: -2px;
}

.access__select-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: #D9D9D9;
}

.access__select-text--filled {
  color: #181717;
}

.access__select-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #646B41;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.access__field[data-inn-field][hidden] {
  display: none;
}

.access__consent {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 0.69vw, 10px);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.21;
  color: #181717;
  cursor: pointer;
}

.access__consent-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.access__consent-input:focus-visible + .access__checkbox {
  outline: 2px solid rgba(251, 140, 39, 0.6);
  outline-offset: 2px;
}

.access__consent-input:checked + .access__checkbox {
  background: #646B41;
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.access__consent-text {
  flex: 1;
  min-width: 0;
}

.access__consent-link {
  color: #FB8C27;
  text-decoration: underline;
}

.access__consent-link:hover {
  color: #e07a1f;
}

.access__checkbox {
  flex-shrink: 0;
  width: clamp(12px, 0.97vw, 14px);
  height: clamp(12px, 0.97vw, 14px);
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 1px;
  margin-top: 0.14vw;
  background: #FFFFFF;
  box-sizing: border-box;
}

.access__login-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.19;
  color: #FB8C27;
  margin-top: 0.56vw;
  text-align: center;
}

.access__login-link a {
  color: #FB8C27;
}

#access-form-anchor,
#contacts-form-anchor {
  scroll-margin-top: clamp(96px, 14vw, 140px);
}

#access-form-anchor:focus,
#contacts-form-anchor:focus {
  outline: none;
}

.access__field-error,
.contacts__field-error {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 0.97vw, 14px);
  line-height: 1.3;
  color: #D64545;
  margin-top: clamp(4px, 0.42vw, 6px);
}

.access__input--invalid,
.contacts__input--invalid,
.contacts__textarea.contacts__input--invalid {
  border-color: #D64545;
}

.contacts__consent-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contacts__consent-input:focus-visible + .contacts__checkbox {
  outline: 2px solid rgba(251, 140, 39, 0.6);
  outline-offset: 2px;
}

.contacts__consent-input:checked + .contacts__checkbox {
  background: #646B41;
  box-shadow: inset 0 0 0 2px #FFFFFF;
}

.contacts__consent-text {
  flex: 1;
  min-width: 0;
}

.contacts__consent-link {
  color: #FB8C27;
  text-decoration: underline;
}

.contacts__consent-link:hover {
  color: #e07a1f;
}

/* ===== AUDIENCE ===== */
.audience {
  position: relative;
  padding-top: 3.3vw;
  padding-bottom: 3.3vw;
  overflow-x: clip;
}

.audience__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(clamp(32px, 5vw, 80px));
}

.audience__glow--right {
  width: 69.7%;
  height: 81.9%;
  right: -20%;
  top: 28%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(237, 140, 51, 0.34) 0%,
    rgba(237, 140, 51, 0.16) 28%,
    rgba(237, 140, 51, 0.06) 52%,
    rgba(237, 140, 51, 0.02) 68%,
    rgba(255, 255, 255, 0) 82%
  );
}

.audience__glow--left {
  width: 69.7%;
  height: 85.1%;
  left: -29%;
  top: 19%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(237, 140, 51, 0.26) 0%,
    rgba(237, 140, 51, 0.12) 30%,
    rgba(237, 140, 51, 0.05) 55%,
    rgba(237, 140, 51, 0.015) 72%,
    rgba(255, 255, 255, 0) 85%
  );
}

.audience__layout {
  position: relative;
}

.audience__showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(16px, 2vw);
  margin-bottom: 3.3vw;
  min-height: 0;
}

.audience__search-bar {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: min(100%, 58vw);
  z-index: 3;
  margin-top: max(8px, 1vw);
}

.audience__search-glass {
  line-height: 0;
  height: auto;
}

.audience__search-glass,
.audience__phone-glass,
.audience__tablet-glass {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #CFD3BB;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.5px);
  border-radius: max(16px, 1.39vw);
  padding: 1.11vw;
}

.audience__search-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: max(8px, 0.69vw);
}

.audience__map {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: min(100%, 67vw);
  z-index: 2;
}

.audience__map-glass {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #CFD3BB;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.5px);
  border-radius: max(16px, 1.39vw);
  padding: 1.11vw;
  line-height: 0;
}

.audience__map-placeholder {
  width: 100%;
  background: transparent;
  border-radius: max(8px, 0.69vw);
  overflow: hidden;
  line-height: 0;
}

.audience__map-placeholder-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: max(8px, 0.69vw);
}

.audience__phone-card {
  position: relative;
  left: auto;
  top: auto;
  width: min(100%, 22.5vw);
  z-index: 4;
}

.audience__tablet-card {
  position: relative;
  right: auto;
  top: auto;
  width: min(100%, 22.5vw);
  z-index: 4;
  align-self: flex-end;
}

.audience__phone-img,
.audience__tablet-img {
  width: 100%;
  border-radius: max(8px, 0.69vw);
}

.audience__texts {
  position: relative;
  z-index: 1;
}

.audience__texts .audience__card:last-child {
  margin-bottom: 0;
}

.audience__card {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 2px 4px 20px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: max(16px, 1.39vw);
  padding: max(20px, 2.22vw) max(24px, 2.78vw);
  margin-bottom: 1.67vw;
}

.audience__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: max(14px, 1.06vw);
  line-height: 1.4;
  color: #181717;
}

/* ===== CONTACTS ===== */
.contacts {
  padding-top: 3.3vw;
  padding-bottom: 4vw;
  overflow-x: clip;
}

.contacts__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.78vw, 40px);
  line-height: 1.1;
  text-align: center;
  color: #181717;
  margin-bottom: 1.32vw;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.contacts__company {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.2;
  text-align: center;
  color: #181717;
  margin-bottom: 3.3vw;
}

.contacts__channels {
  margin-bottom: 3.3vw;
}

.contacts__channel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.78vw, 40px);
  margin-bottom: 2vw;
}

.contacts__channel-icon-link {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  cursor: pointer;
}

.contacts__channel-icon-link:hover {
  opacity: 0.85;
}

.contacts__channel-icon-link:focus-visible {
  outline: 2px solid #646B41;
  outline-offset: 2px;
  border-radius: 4px;
}

.contacts__channel-icon-img {
  flex-shrink: 0;
  display: block;
  width: clamp(60px, 5.69vw, 82px);
  height: clamp(54px, 5.07vw, 73px);
  object-fit: contain;
}

.contacts__channel-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: #181717;
  margin-bottom: 0.28vw;
}

.contacts__channel-time {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: rgba(100, 107, 65, 0.6);
}

.contacts__form-wrap {
  background: rgba(207, 211, 187, 0.2);
  border: 1px solid #D9D9D9;
  backdrop-filter: blur(2px);
  border-radius: 12px;
  padding: clamp(32px, 4.44vw, 64px);
}

.contacts__form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.39vw, 20px);
}

.contacts__field {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.56vw, 8px);
}

.contacts__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.19;
  color: #181717;
}

.contacts__input {
  width: 100%;
  height: clamp(42px, 3.19vw, 46px);
  background: #FFFFFF;
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 12px;
  padding: 0 1.67vw;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: #181717;
}

.contacts__input::placeholder {
  color: #D9D9D9;
}

.contacts__textarea {
  width: 100%;
  height: clamp(80px, 6.25vw, 90px);
  background: #FFFFFF;
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 12px;
  padding: 0.83vw 1.67vw;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.4;
  color: #181717;
  resize: none;
}

.contacts__textarea::placeholder {
  color: #D9D9D9;
}

.contacts__consent {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 0.69vw, 10px);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.21;
  color: #181717;
  cursor: pointer;
}

.contacts__checkbox {
  flex-shrink: 0;
  width: clamp(12px, 0.97vw, 14px);
  height: clamp(12px, 0.97vw, 14px);
  border: 1px solid rgba(100, 107, 65, 0.6);
  border-radius: 1px;
  margin-top: 0.14vw;
  background: #FFFFFF;
  box-sizing: border-box;
}

/* ===== FOOTER ===== */
.footer {
  background: #474B3E;
  padding: clamp(40px, 4.44vw, 64px) 0 0;
  position: relative;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

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

.footer__logo {
  display: block;
}

.footer__logo-img {
  width: clamp(40px, 7.5vw, 104px);
  height: auto;
}

.footer__top {
  container-type: inline-size;
  container-name: footer-top;
  margin-bottom: clamp(24px, 5.28vw, 76px);
  flex-wrap: nowrap;
  align-items: flex-start;
}

.footer__top > [class*="col-"]:nth-child(1) {
  flex: 0 0 32.35%;
  max-width: 32.35%;
}

.footer__top > [class*="col-"]:nth-child(2) {
  flex: 0 0 17.2%;
  max-width: 17.2%;
  padding-right: clamp(40px, 6.5vw, 120px);
}

.footer__top > [class*="col-"]:nth-child(3) {
  flex: 0 0 25.76%;
  max-width: 25.76%;
  padding-left: clamp(24px, 4vw, 60px);
}

.footer__top > [class*="col-"]:nth-child(4) {
  flex: 0 0 24.73%;
  max-width: 24.73%;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.25vw, 16px);
  margin-bottom: 0;
  padding-top: clamp(2px, 0.25vw, 4px);
}

.footer__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(8px, 1.1vw, 16px);
  line-height: 1.35;
  color: #FFFFFF;
  white-space: nowrap;
}

.footer__link--audience-replacement {
  display: none;
}

.footer__actions {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.04vw, 14px);
  width: 100%;
  max-width: min(460px, 100%);
  margin-left: auto;
}

.footer__bottom {
  container-type: inline-size;
  container-name: footer-bottom;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.67vw, 24px);
}

.footer__bottom > [class*="col-"] {
  flex: 0 1 auto;
  width: auto;
  max-width: calc(50% - clamp(4px, 0.83vw, 12px));
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.footer__bottom-col--right {
  flex: 0 0 auto;
  text-align: right;
  margin-left: auto;
}

.footer__legal {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6vw, 24px);
  line-height: 1.4;
  color: #FFFFFF;
  display: block;
  max-width: 100%;
}

@media (min-width: 913px) {
  .footer__legal {
    white-space: nowrap;
  }
}

.footer__brand {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(16px, 1.81vw, 26px);
  padding-top: clamp(16px, 1.81vw, 26px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.footer__brand-inner {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 1.231%;
  width: min(100%, 90.278vw);
  max-width: none;
}

.footer__brand-word,
.footer__brand-mark {
  display: block;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.footer__brand-word {
  width: 83.846%;
  flex: 0 0 83.846%;
}

.footer__brand-mark {
  width: 14.923%;
  flex: 0 0 14.923%;
}

.footer__requisites {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(16px, 2.22vw, 32px);
}

.footer__requisites-line {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(10px, 1.25vw, 14px) clamp(16px, 2.22vw, 24px);
  background-color: #0e1726;
  border-radius: 0;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.footer__requisites-text {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(10px, 1.11vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  color: #e5e7eb;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
  .hero {
    display: block;
    min-height: max(480px, 72.07vw);
    padding-bottom: 12.5vw;
  }

  .hero__bg {
    aspect-ratio: 1400 / 1009;
  }

  .hero__container {
    order: unset;
    padding-top: 14.6vw;
    padding-bottom: 5vw;
  }

  .hero__mockup {
    position: absolute;
    margin: 0;
  }

  .hero__mockup--left {
    left: 4.7%;
    top: 48%;
    width: 28.4vw;
  }

  .hero__mockup--center {
    left: 50%;
    transform: translateX(-50%);
    top: 59%;
    width: 58.1vw;
  }

  .hero__mockup--right {
    right: 7.3%;
    top: 34%;
    width: 23vw;
  }

  .audience__layout {
    min-height: max(520px, 62vw);
  }

  .audience .container {
    padding-bottom: 0;
  }

  .audience__showcase {
    position: absolute;
    inset: 0;
    display: block;
    min-height: 0;
    margin-bottom: 0;
  }

  .audience__search-bar {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    max-width: none;
    margin-top: 0;
  }

  .audience__map {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 67%;
    max-width: none;
  }

  .audience__phone-card {
    position: absolute;
    left: 11.3%;
    top: 19%;
    width: 22.5%;
    max-width: none;
  }

  .audience__tablet-card {
    position: absolute;
    right: 4%;
    top: 19%;
    width: 22.5%;
    max-width: none;
    align-self: auto;
  }

  .audience__texts {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 50%;
    margin-top: 0;
    margin-left: 0;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    z-index: 5;
  }

  .audience__texts > [class*="col-"] {
    margin-left: 0;
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .header__nav {
    gap: max(4px, 1.2vw);
  }

  .header__link {
    font-size: max(11px, 1.1vw);
  }
}

@media (max-width: 768px) {
  .regions {
    display: none;
  }

  .footer__link[href="#audience"] {
    display: none;
  }

  .footer__link--audience-replacement {
    display: block;
  }

  .footer__top > [class*="col-"]:nth-child(3) {
    display: none;
  }
}

@media (max-width: 912px) {
  .audience {
    display: none;
  }

  .contacts__channel-info {
    display: none;
  }

  .contacts__channels {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: calc(33.3333% - clamp(60px, 5.69vw, 82px));
  }

  .contacts__channels > [class*="col-"] {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .contacts__channel {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer {
    padding: clamp(20px, 5.09vw, 28px) 0 0;
  }

  .footer__top {
    flex-wrap: wrap;
    row-gap: clamp(20px, 12.2vw, 48px);
    margin-bottom: 0;
    align-items: flex-start;
  }

  .footer__top > [class*="col-"]:nth-child(1) {
    flex: 0 0 22.9%;
    max-width: 22.9%;
  }

  .footer__top > [class*="col-"]:nth-child(2) {
    flex: 0 0 36.6%;
    max-width: 36.6%;
    padding-right: clamp(28px, 10vw, 64px);
  }

  .footer__top > [class*="col-"]:nth-child(3) {
    flex: 0 0 30.3%;
    max-width: 30.3%;
    padding-left: clamp(16px, 6.5vw, 40px);
  }

  .footer__top > [class*="col-"]:nth-child(4) {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer__nav-col {
    padding-top: clamp(2px, 2vw, 8px);
  }

  .footer__actions {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .footer__actions .btn--login-footer,
  .footer__actions .btn--register-footer {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .footer__bottom {
    margin-top: clamp(32px, 18.3vw, 72px);
  }

  .footer__legal {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .footer__brand {
    margin-top: clamp(14px, 4.58vw, 18px);
    padding-top: clamp(14px, 4.58vw, 18px);
  }

  .footer__brand-inner {
    width: 100%;
    max-width: 100%;
    gap: 1.21%;
  }

  .footer__brand-word {
    width: 83.45%;
    flex: 0 0 83.45%;
  }

  .footer__brand-mark {
    width: 15.34%;
    flex: 0 0 15.34%;
  }
}

@media (max-width: 992px) {
  .about-access__top > .col-lg-5,
  .about-access__top > .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-access {
    margin-top: clamp(20px, 4vw, 36px);
  }

  .about-access__bg {
    inset: 0;
    border-radius: 0;
    background: linear-gradient(239.16deg, rgba(100, 107, 65, 0.3) 0.72%, rgba(227, 229, 218, 0) 57.81%, rgba(164, 168, 142, 0.15) 90.22%);
  }

  .about-access__bg::after {
    background: radial-gradient(86.63% 81.63% at 39.23% 41.72%, rgba(251, 140, 39, 0.08) 0%, rgba(227, 229, 218, 0) 51.44%);
  }

  .about-access__top {
    margin-bottom: clamp(48px, 8vw, 72px);
  }

  .about-access__list-col {
    margin-bottom: clamp(36px, 6vw, 56px);
  }

  .access__block > .row > .col-lg-5 {
    text-align: center;
    margin-bottom: clamp(28px, 5vw, 44px);
  }
}

@media (max-width: 769px) {
  .lwr_page .container {
    width: min(92%, 100%);
    padding-left: 8px;
    padding-right: 8px;
  }

  .regions__bg {
    width: min(92%, 100%);
  }

  .header__wrap {
    width: calc(100% - 6vw);
  }

  .header__bar {
    padding: clamp(8px, 2vw, 12px) 0;
    border: none;
    background: transparent;
    border-radius: 0;
    min-height: auto;
    position: relative;
  }

  .header__row {
    flex-wrap: nowrap;
    align-items: center;
  }

  .header__logo-col {
    order: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .header__burger-col {
    display: flex;
    order: 1;
    flex: 0 0 50%;
    max-width: 50%;
    justify-content: flex-end;
    align-items: center;
  }

  .header__nav-col,
  .header__actions-col {
    display: none;
  }

  .header__nav a[href="#audience"] {
    display: none;
  }

  .header.is-menu-open .header__nav-col {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: auto;
    min-width: clamp(160px, 44vw, 220px);
    max-width: min(240px, 70vw);
    z-index: 110;
    order: 3;
    flex: none;
    padding: 0;
  }

  .header.is-menu-open .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CFD3BB;
    border-radius: clamp(12px, 3vw, 20px);
    padding: clamp(8px, 2vw, 12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .header.is-menu-open .header__link {
    display: block;
    padding: clamp(8px, 2vw, 12px) clamp(10px, 2.5vw, 14px);
    font-size: clamp(13px, 3.2vw, 15px);
    line-height: 1.3;
    white-space: nowrap;
    border-radius: 8px;
  }

  .header.is-menu-open .header__link:hover {
    background: rgba(100, 107, 65, 0.08);
  }

  .header.is-menu-open .header__nav a[href="#audience"] {
    display: none;
  }

  .header__logo-img {
    width: clamp(64px, 18vw, 100px);
  }

  .hero__container {
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: clamp(90px, 18vw, 120px);
  }

  .hero__title {
    font-size: clamp(20px, 5.5vw, 32px);
    margin-bottom: clamp(12px, 3vw, 20px);
  }

  .hero__subtitle {
    font-size: clamp(14px, 3.8vw, 18px);
    max-width: 100%;
    margin-bottom: clamp(16px, 4vw, 24px);
  }

  .hero__actions {
    max-width: none;
  }

  .hero__mockup--left,
  .hero__mockup--right {
    display: none;
  }

  .hero__mockup--center {
    width: min(96%, calc(100% - 16px));
    max-width: 520px;
    transform: translateY(clamp(32px, 8vw, 64px));
  }

  .hero__mockup-glass {
    max-width: 100%;
  }

  .hero__mockup-img--desktop {
    display: none;
  }

  .hero__mockup-img--mobile {
    display: block;
  }

  .access__block {
    margin-top: 5vw;
  }

  .contacts__channel {
    justify-content: flex-start;
  }
}

@media (min-width: 993px) {
  .about-access {
    padding-bottom: 5vw;
    padding-top: max(12px, 1.5vw);
  }

  .btn--outline:not(.hero__actions .btn--outline),
  .btn--filled:not(.hero__actions .btn--filled) {
    width: auto;
  }
}

@media (max-width: 768px) {
  .footer__top > [class*="col-"]:nth-child(2) {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
    padding-right: clamp(8px, 2vw, 16px);
    padding-left: clamp(12px, 4vw, 28px);
  }

  .footer__nav-col {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(8px, 2.8vw, 16px);
    margin-left: clamp(4px, 1.5vw, 12px);
  }

  .footer__nav-col .footer__link {
    font-size: clamp(8px, 2.6vw, 12px);
  }
}
