@charset "UTF-8";
/* reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Сброс стилей списков */
ul,
ol {
  list-style: none;
}

/* Сброс ссылок */
a {
  text-decoration: none;
  color: inherit;
}

/* Сброс кнопок и инпутов */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Сброс таблиц */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Сброс изображений */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Сброс заголовков и параграфов */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

@font-face {
  font-family: "Google Sans Flex";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/google-sans-flex-v19-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Google Sans Flex";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/google-sans-flex-v19-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Google Sans Flex";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/google-sans-flex-v19-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando Sans SemiExpanded";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/zalando-sans-semiexpanded-v3-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando Sans SemiExpanded";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/zalando-sans-semiexpanded-v3-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando Sans SemiExpanded";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/zalando-sans-semiexpanded-v3-latin-700.woff2") format("woff2");
}
body {
  font-family: "Google Sans Flex", sans-serif;
}

:root {
  --gray-50: #eceef1;
  --gray-100: #d9dde4;
  --gray-200: #b4bcca;
  --gray-300: #909cb0;
  --gray-400: #707a8b;
  --gray-500: #555d6a;
  --gray-600: #434954;
  --gray-700: #343942;
  --gray-800: #24282f;
  --gray-900: #15181c;
  --gray-950: #0c0e12;
  --yellow: #b29b35;
  --circle: 9999px;
  --white: #fff;
}

:root {
  --font-family: 'Google Sans Flex', sans-serif;
  --second-family: 'Zalando Sans SemiExpanded', sans-serif;
  --third-family: 'Inter', sans-serif;
}

:root {
  --header-height: 80px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  color: var(--3);
  background-color: var(--1);
  font-size: 1rem;
}
body.menu-open {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow-x: clip;
}

[class$=__container] {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  [class$=__container] {
    padding: 0 20px;
  }
}
@media (max-width: 744px) {
  [class$=__container] {
    padding: 0 15px;
  }
}

[class$=__container-wide] {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  [class$=__container-wide] {
    padding: 0 4px;
  }
}

.p-20 {
  padding-block: 20px;
}
@media (max-width: 1024px) {
  .p-20 {
    padding-block: 16px;
  }
}
@media (max-width: 768px) {
  .p-20 {
    padding-block: 12px;
  }
}

.p-48 {
  padding-block: 48px;
}
@media (max-width: 1024px) {
  .p-48 {
    padding-block: 40px;
  }
}
@media (max-width: 768px) {
  .p-48 {
    padding-block: 32px;
  }
}

.p-80 {
  padding-block: 80px;
}
@media (max-width: 1024px) {
  .p-80 {
    padding-block: 64px;
  }
}
@media (max-width: 768px) {
  .p-80 {
    padding-block: 48px;
  }
}

.text-4xl {
  font-family: "Zalando Sans SemiExpanded";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.56px;
}
@media (max-width: 1024px) {
  .text-4xl {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.48px;
  }
}
@media (max-width: 768px) {
  .text-4xl {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.36px;
  }
}
@media (max-width: 480px) {
  .text-4xl {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}

.text-3xl {
  font-family: "Zalando Sans SemiExpanded";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0.36px;
}
@media (max-width: 1024px) {
  .text-3xl {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.32px;
  }
}
@media (max-width: 768px) {
  .text-3xl {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0.28px;
  }
}
@media (max-width: 480px) {
  .text-3xl {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.24px;
  }
}

.text-2xl {
  font-family: "Zalando Sans SemiExpanded";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
@media (max-width: 1024px) {
  .text-2xl {
    font-size: 22px;
    line-height: 28px; /* 140% */
  }
}
@media (max-width: 768px) {
  .text-2xl {
    font-size: 20px;
    line-height: 26px; /* 133.333% */
  }
}

.text-xl {
  font-family: "Zalando Sans SemiExpanded";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
}
@media (max-width: 1024px) {
  .text-xl {
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
}

.text-lg {
  font-family: "Google Sans Flex";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 1024px) {
  .text-lg {
    font-size: 16px;
    line-height: 24px;
  }
}

.text-sm {
  font-family: "Google Sans Flex";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.text-base, .btn-primary {
  font-family: "Google Sans Flex";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 768px) {
  .text-base, .btn-primary {
    font-size: 14px;
    line-height: 20px;
  }
}

.btn-primary {
  color: #fff;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: var(--6px, 6px);
  border-radius: var(--Circle, 9999px);
  background: var(--yellow);
  margin-right: auto;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary:hover {
  color: var(--gray-100);
}

body {
  background: radial-gradient(circle at top, rgba(178, 155, 53, 0.12), transparent 30%), linear-gradient(180deg, #fcfcf8 0%, #f5f3ea 100%);
  color: var(--gray-900);
}

.legal-page {
  min-height: 100vh;
  padding: 48px 0;
}

.legal-page__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page__card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 24, 28, 0.08);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(21, 24, 28, 0.08);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}
.legal-page__back:hover {
  color: var(--gray-950);
  transform: translateX(-2px);
}

.legal-page__back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(21, 24, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}
.legal-page__back-arrow img {
  width: 18px;
  height: 18px;
}

.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 8px 14px;
  border-radius: var(--circle);
  background: rgba(178, 155, 53, 0.14);
  color: var(--gray-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 600;
}

.legal-page__title {
  margin-top: 20px;
  color: var(--gray-950);
}

.legal-page__intro {
  margin-top: 16px;
  max-width: 42rem;
  color: var(--gray-600);
}

.legal-page__content {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(21, 24, 28, 0.08);
}
.legal-page__content h2,
.legal-page__content h3,
.legal-page__content h4,
.legal-page__content h5,
.legal-page__content h6 {
  color: var(--gray-950);
  font-family: var(--second-family);
}
.legal-page__content h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.legal-page__content h3 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}
.legal-page__content h4,
.legal-page__content h5,
.legal-page__content h6 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}
.legal-page__content p,
.legal-page__content li {
  color: var(--gray-700);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
}
.legal-page__content p + p {
  margin-top: 14px;
}
.legal-page__content ul,
.legal-page__content ol {
  margin: 14px 0 0;
  padding-left: 22px;
}
.legal-page__content ul {
  list-style: disc;
}
.legal-page__content ol {
  list-style: decimal;
}
.legal-page__content li + li {
  margin-top: 8px;
}
.legal-page__content strong,
.legal-page__content b {
  color: var(--gray-950);
  font-weight: 600;
}

.legal-page__section + .legal-page__section {
  margin-top: 32px;
}

.legal-page__section-title {
  margin-bottom: 14px;
  color: var(--gray-950);
}

.legal-page__text + .legal-page__text {
  margin-top: 12px;
}

.legal-page__list {
  display: grid;
  gap: 16px;
}

.legal-page__item {
  display: grid;
  gap: 4px;
}

.legal-page__label {
  color: var(--gray-500);
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-page__value {
  color: var(--gray-800);
}

.legal-page__link {
  color: var(--gray-900);
  text-decoration: underline;
  text-decoration-color: rgba(21, 24, 28, 0.2);
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 24px 0;
  }
  .legal-page__container {
    padding: 0 15px;
  }
  .legal-page__card {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .legal-page__back {
    font-size: 0.9rem;
  }
  .legal-page__content {
    margin-top: 28px;
    padding-top: 24px;
  }
  .legal-page__content h2 {
    font-size: 1.55rem;
  }
  .legal-page__content h3 {
    font-size: 1.15rem;
  }
  .legal-page__section + .legal-page__section {
    margin-top: 24px;
  }
}