@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

:-moz-focusring {
  outline: auto;
}

ol,
ul,
menu {
  list-style: none;
}

img,
svg {
  display: block;
  vertical-align: middle;
}

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

button,
input,
select {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-date-and-time-value {
  min-height: 1lh;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

:-moz-ui-invalid {
  box-shadow: none;
}

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
  appearance: none;
}

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}

@media only screen and (max-width: 1200px) {
  input[type=number]::-webkit-inner-spin-button {
    opacity: 1;
  }
}

html {
  font-size: 16px;
}

body {
  font-family: 'Open Sans', Arial, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  font-size: 16px;
  line-height: 1.5;
  background-color: #FBFBFB;
  color: #0B1C33;
  overflow-x: hidden;
}

body.is-modal-active {
  overflow-y: hidden;
}

.h1,
.h2 {
  font-size: 24px;
  line-height: 1.3333333333333333;
  font-weight: 700;
  text-transform: uppercase;
}

.h1>span,
.h2>span {
  color: #406ffb;
}

@media (min-width: 768px) {
  .h1,
  .h2 {
    font-size: 36px;
    line-height: 1.1;
  }
}

p+* {
  margin-top: 8px;
}

a {
  text-decoration: underline;
  color: #ff3d71;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

ol {
  counter-reset: list-counter;
  padding-left: 20px;
}

ol.pl-duble {
  padding-left: 40px;
  ]
}

li {
  list-style: number;
}

.list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-left: 20px;
  list-style: disc;
}

.list-item {
  font-size: 18px;
  line-height: 1;
}

.ui-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease-in-out;
  outline: none;
  cursor: pointer;
}

.ui-btn-primary {
  border-color: #ff3d71;
  background-color: #ff3d71;
  color: #FFFFFF;
}

.ui-btn-primary:hover {
  border-color: #ec6699;
  background-color: #ec6699;
}

.ui-btn-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: relative;
}

.ui-btn-spinner::after {
  content: "";
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ff3d71;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
  background-color: #FFFFFF;
  transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out;
  outline: none;
}

.ui-checkbox {
  display: block;
  position: relative;
  padding: 0 0 0 30px;
  font-size: 16px;
  line-height: 20px;
  user-select: none;
  cursor: pointer;
}

.ui-checkbox__input {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
}

.ui-checkbox__mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.ui-checkbox__mark:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ui-checkbox__input:not(:checked)~.ui-checkbox__mark:after {
  display: none;
}

.ui-checkbox__input:checked~.ui-checkbox__mark {
  border-color: #ff3d71;
  background-color: #ff3d71;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row>[class*="w-col-"],
.row>.col {
  padding-left: 15px;
  padding-right: 15px;
}

.col {
  flex: 1 1 0%;
  min-width: 0;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-sm-4 {
    width: 33.3333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.6666667%;
  }
}

@media (min-width: 992px) {
  .col-md-12 {
    width: 100%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-4 {
    width: 33.3333333%;
  }

  .col-md-3 {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .row {
    flex-direction: column;
  }

  .row>[class*="w-col-"],
  .row>.col {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.full {
  width: 100%;
}

.ui-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 100;
}

body.scrolled .ui-header.ui-header--fixed {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgb(225 227 230 / 0.5);
}

.ui-header__container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}

@media (min-width: 1160px) {
  .ui-header__container {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.ui-header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.ui-header-logo__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-header-logo__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.ui-header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ui-header-logo__site {
  font-weight: 700;
  font-size: 18px;
}

.ui-header-logo__tagline {
  font-size: 14px;
  color: rgba(11, 28, 51, 0.7);
}

.ui-header-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.ui-header-menu__items {
  display: flex;
  align-items: center;
  column-gap: 32px;
}

.ui-header-menu__link {
  text-decoration: none;
  color: #363636;
}

.ui-header-menu__link:hover {
  color: #ff3d71;
}

@media (max-width: 1023px) {
  .ui-header-menu:not(.ui-header-menu--active) {
    display: none;
  }
}

.ui-header-btn--desktop {
  margin-left: auto;
}

@media (max-width: 1279px) {
  .ui-header-btn--desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .ui-header-btn--mobile {
    display: none;
  }
}

.ui-header-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ui-header-info--desktop {
  margin-left: 32px;
  font-size: 18px;
  line-height: 1.5555555555555556;
}

.ui-header-info__item {
  text-decoration: none;
  color: #363636;
}

.ui-header-info__item:hover {
  color: #ff3d71;
}

@media (max-width: 767px) {
  .ui-header-info--desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .ui-header-info--mobile {
    display: none;
  }
}

.ui-header-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.ui-header-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #363636;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ui-header-burger.ui-header-burger--active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

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

.ui-header-burger.ui-header-burger--active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .ui-header-burger {
    display: flex;
  }

  .ui-header-menu {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 100;
  }

  .ui-header-menu.ui-header-burger--active {
    right: 0;
  }

  .ui-header-menu__items {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
    margin-bottom: 32px;
  }

  .ui-header-menu__link {
    font-size: 18px;
    font-weight: 500;
  }

  .ui-header-btn--mobile {
    width: 100%;
    margin-top: auto;
    margin-bottom: 24px;
  }

  .ui-header-info--mobile {
    flex-direction: row;
    column-gap: 12px;
    width: 100%;
  }
}

.ui-header-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ui-header-menu-overlay.ui-header-menu-overlay--active {
  display: block;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.footer {
  display: flex;
  align-items: center;
}

.footer__container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 16px;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section__title {
  font-weight: 700;
}

.footer-section__content a {
  text-decoration: none;
  color: #363636;
}

.footer a:hover {
  text-decoration: none;
  color: #ff3d71;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__cell:first-child .footer-section__content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 8px;
  }
}

.section {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-title {
  margin-bottom: 32px;
  text-align: center;
}

.section-description {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.5555555555555556;
}

.section.section--hr {
  padding-top: calc(132px + 32px);
  padding-bottom: 0;
}

.section.section--hr .section-title {
  text-align: left;
}

@media (min-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.section--hr:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 760px;
    width: 100%;
    height: 100%;
    background-color: #F7F9FC;
    background-image: url('../img/bg-hr.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    box-shadow: -1000px 0 #F7F9FC;
  }
}

.section.section--advs {
  border-bottom: 1px solid #C0C0C0;
}

.section.section--wy {
  background: #FFFFFF;
}

.section.section--wd {
  background-color: #F6F7F9;
}

.section.section--social .section-description {
  text-align: center;
}

.section.section--advs2 {
  padding-bottom: 0;
}

.section.section--social {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 400px;
  overflow: hidden;
}

.section-social-bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg-social.webp');
  background-position: center calc(50% - 100px);
  background-size: auto 750px;
  background-repeat: no-repeat;
  filter: blur(8px);
}

.section-social-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.section.section--social .container {
  z-index: 2;
}

@media (min-width: 768px) {
  .section.section--social {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.section.section--more {
  padding-bottom: 0;
}

.section.section--contacts {
  padding-bottom: 0;
}

.hr {
  width: 100%;
}

.hr-slogan {
  margin-bottom: 32px;
}

.hr-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 10px 40px rgba(15, 15, 15, 0.08);
  border: 1px solid rgba(11, 28, 51, 0.06);
  max-width: 560px;
  width: 100%;
  align-items: stretch;
}

.hr-form__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.5555555555555556;
  color: rgba(11, 28, 51, 0.9);
}

.hr-form__input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0;
}

.hr-form .input {
  border-color: rgba(11, 28, 51, 0.07);
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 16px;
  box-shadow: none;
}

.hr-form .ui-btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease;
}

.hr-form__policy {
  font-size: 14px;
  color: rgba(11, 28, 51, 0.75);
}

.hr-form .ui-checkbox {
  padding-left: 30px;
  font-size: 14px;
}

.hr-form .ui-checkbox__mark {
  border-color: rgba(11, 28, 51, 0.12);
  background-color: transparent;
}

.hr-form .ui-checkbox__input:checked~.ui-checkbox__mark {
  border-color: #ff3d71;
  background-color: #ff3d71;
}

.hr-form .ui-checkbox a {
  color: #ff3d71;
  text-decoration: underline;
}

@media (min-width: 640px) {
  .hr-form__input-group {
    flex-direction: row;
    align-items: center;
    column-gap: 16px;
  }

  .hr-form__input-group .input {
    flex: 1 1 auto;
  }

  .hr-form__input-group .ui-btn {
    flex: 0 0 auto;
  }
}

@media (min-width: 768px) {
  .hr {
    max-width: 600px;
  }

  .hr-list-item {
    font-size: 18px;
  }

  .hr-form {
    padding: 32px;
  }

  .hr-form__description {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.5555555555555556;
  }
}

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

.advs-item {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 24px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 10px 40px #0f0f0f14;
  overflow: hidden;
}

.advs-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
  grid-row: 1 / -1;
  width: 55px;
  height: 55px;
  border-radius: 2px;
  background: #f6f7f9;
}

.advs-item__icon svg {
  width: 24px;
  height: auto;
}

@media (min-width: 768px) {
  .advs {
    flex-direction: row;
    column-gap: 32px;
  }

  .advs-item {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 250px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.wys {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .wys {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.wy {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 10px 40px rgba(15, 15, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
}

.wy__item {
  width: 100%;
}

.wy .section-title {
  margin-bottom: 24px;
  text-align: left;
  font-size: 20px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .wy .section-title {
    font-size: 24px;
    line-height: 1.3333333333333333;
  }
}

.wy__sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wy__section {
  padding: 20px 0;
  border-top: none;
}

.wy__section:first-child {
  padding-top: 0;
}

.wy__section:last-child {
  padding-bottom: 0;
}

.wy__section+.wy__section {
  padding-top: 20px;
  border-top: 1px solid rgba(11, 28, 51, 0.08);
}

.wy__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.5555555555555556;
  font-weight: 600;
  color: #0B1C33;
}

.wy__title::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff3d71;
}

.wy .list {
  row-gap: 12px;
  padding-left: 32px;
}

.wy .list-item {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(11, 28, 51, 0.8);
}

@media (min-width: 768px) {
  .wy {
    padding: 32px;
  }
}

.wd {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .wd {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .wd {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.wd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px 24px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 10px 40px rgba(15, 15, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
}

.wd-item:hover::after {
  opacity: 1;
}

.wd-item__number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #ff3d71 0%, #406ffb 100%);
  box-shadow: 0 8px 24px rgba(255, 61, 113, 0.25);
}

.wd-item__description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11, 28, 51, 0.85);
}

.cb-form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 32px;
  border-radius: 5px;
  border: none;
  background: #406ffb;
  box-shadow: 0 15px 50px rgba(255, 61, 113, 0.25);
  position: relative;
  overflow: hidden;
}

.cb-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cb-form::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cb-form__cell {
  position: relative;
  z-index: 1;
}

.cb-form__cell>* {
  width: 100%;
}

.cb-form .input {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  padding: 16px 20px;
}

.cb-form .input:focus {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.cb-form .ui-checkbox {
  color: #FFFFFF;
}

.cb-form .ui-checkbox__mark {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
}

.cb-form .ui-checkbox a {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cb-form {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 24px;
    padding: 40px 48px;
  }

  .cb-form__cell {
    flex: 1 1 auto;
    min-width: 200px;
  }

  .cb-form__cell:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 8px;
  }
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social .section-title {
  margin-bottom: 16px;
}

.social-description,
.section--social .section-description {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(11, 28, 51, 0.75);
  max-width: 500px;
}

.social-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 48px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  color: #363636;
  box-shadow: 0 10px 40px rgba(15, 15, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 180px;
}

.social-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 15, 15, 0.14);
}

.social-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.social-item:hover .social-item__icon {
  transform: scale(1.1);
}

.social-item__icon--telegram {
  background-image: url(../img/icon-telegram.svg);
}

.social-item__icon--whatsapp {
  background-image: url(../img/icon-whatsapp.svg);
}

.social-item__title {
  font-size: 18px;
  font-weight: 600;
}

.more {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.more-item {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 10px 40px rgba(15, 15, 15, 0.08);
  transition: box-shadow 0.25s ease;
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, 0.06);
}

.more-item:hover {
  box-shadow: 0 15px 45px rgba(15, 15, 15, 0.12);
}

.more-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.more-item__title:hover {
  color: #ff3d71;
}

.more-item--open .more-item__title {
  color: #ff3d71;
  background-color: rgba(255, 61, 113, 0.03);
}

.more-item__title::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 61, 113, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 1v12M1 7h12' stroke='%23FF3D71' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
  position: static;
  transform: none;
  right: auto;
  top: auto;
}

.more-item--open .more-item__title::after {
  background-color: #ff3d71;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M1 7h12' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.more-item__description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  opacity: 0;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  color: rgba(11, 28, 51, 0.75);
}

.more-item--open .more-item__description {
  max-height: 500px;
  opacity: 1;
  padding: 0 28px 24px;
}

.section--contacts {
  padding-bottom: 48px;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #FFFFFF);
  box-shadow: 0 10px 40px rgba(15, 15, 15, 0.08);
}

@media (min-width: 768px) {
  .contacts {
    gap: 32px;
    padding: 48px;
  }
}

.contacts__title {
  grid-column: 1 / -1;
  font-size: 20px;
  font-weight: 600;
  color: #0B1C33;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 61, 113, 0.15);
  margin-bottom: 8px;
}

.contacts__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
  text-align: center;
}

.contacts__item:last-child {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: left;
}

.contacts__item a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts__item a:hover {
  color: #ff3d71;
}

.contacts__item:last-child {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11, 28, 51, 0.8);
}

@media (min-width: 768px) {
  .contacts__item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 599px) {
  .contacts__item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contacts__item a {
    justify-content: flex-start;
    text-align: left;
  }
}

.fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.fade.fade--visible {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal.modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-window {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transform: translateY(-40px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.modal.modal--active .modal-window {
  transform: translateY(0);
  opacity: 1;
}
.modal-policy .modal-window {
  max-width: 1200px;
}
.modal.modal--active {
  display: block !important;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.modal-headline {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 36px;
  font-weight:700;
}
.modal-title  {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: calc(1.75 / 1.25);
  font-weight: 700;
}
.modal-cb .modal-window {
  max-width: 400px;
}
.modal-cb .modal-headline {
  text-align: center;
}
.modal-cb-form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.modal-cb-form__field {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal {
    padding: 32px;
  }
  .modal-window {
    padding: 32px;
  }
  .modal-headline {
    margin-bottom: 16px;
  }
}

.form-message {
  margin-top: 12px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid transparent;
  color: #111827;
  background: #F3F4F6;
}
.form-message--success {
  background: #EDF7EC;
  color: #166534;
  border-color: #D1FAE5;
}
.form-message--error {
  background: #FEF2F2;
  color: #991B1B;
  border-color: #FECACA;
}
.form-message--info {
  background: #F3F4F6;
  color: #111827;
  border-color: #E5E7EB;
}
