@import url('fonts.css');
@import url('variables.css');
@import url('typography.css');
@import url('footer.css');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.privacy-page {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(180deg, rgba(8, 10, 16, 0.38) 0%, rgba(8, 10, 16, 0.94) 100%),
    url('../img/bg-7.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.privacy-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--color-accent-rgb), 0.08), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(var(--color-accent-rgb), 0.16), transparent 28%);
}

.privacy-page__container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.privacy-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 18px;
}

.privacy-page__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.privacy-page__logo {
  display: block;
  width: 126px;
  height: auto;
}

.privacy-page__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.privacy-page__nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.2s ease;
}

.privacy-page__nav-link:hover {
  color: var(--color-white);
}

.privacy-page__hero {
  padding: 42px 0 112px;
}

.privacy-page__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 22px;
  text-align: center;
}

.privacy-page__title-line {
  font-size: 86px;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.privacy-page__title-accent {
  margin-top: -0.24em;
  font-size: 86px;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.privacy-page__meta {
  margin-bottom: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-accent-rgb), 0.85);
}

.privacy-page__card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 42px 46px 48px;
  border: 1px solid var(--border-subtle);
  border-radius: 34px;
  background: var(--surface-card);
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.privacy-page__section {
  margin-bottom: 34px;
}

.privacy-page__section:last-child {
  margin-bottom: 0;
}

.privacy-page__section-title {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.privacy-page__subsection {
  margin-top: 24px;
}

.privacy-page__subsection-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(var(--color-accent-rgb), 0.95);
}

.privacy-page__paragraph {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-page__paragraph--last {
  margin-bottom: 0;
}

.privacy-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-page__list-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.privacy-page__list-item::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 14px rgba(var(--color-accent-rgb), 0.55);
}

.privacy-page__list-item:last-child {
  margin-bottom: 0;
}

.privacy-page__section--contact {
  padding-top: 6px;
}

.privacy-page__contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  margin-top: 6px;
  padding: 12px 22px;
  border-radius: 18px;
  background: rgba(var(--color-accent-rgb), 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: var(--color-accent);
}

.privacy-page__or {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1024px) {
  .privacy-page__title-line,
  .privacy-page__title-accent {
    font-size: 64px;
  }

  .privacy-page__card {
    padding: 34px 32px 40px;
  }

  .privacy-page__section-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .privacy-page {
    background-image:
      linear-gradient(180deg, rgba(8, 10, 16, 0.35) 0%, rgba(8, 10, 16, 0.95) 100%),
      url('../img/7-bg_mob.jpg');
    background-position: center top;
  }

  .privacy-page__container {
    width: min(100%, calc(100% - 32px));
  }

  .privacy-page__header {
    flex-direction: column;
    gap: 22px;
    padding: 24px 0 8px;
  }

  .privacy-page__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 22px;
  }

  .privacy-page__nav-link {
    font-size: 13px;
  }

  .privacy-page__hero {
    padding: 34px 0 72px;
  }

  .privacy-page__title {
    margin-bottom: 18px;
  }

  .privacy-page__title-line,
  .privacy-page__title-accent {
    font-size: 44px;
  }

  .privacy-page__meta {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .privacy-page__card {
    padding: 24px 18px 30px;
    border-radius: 24px;
  }

  .privacy-page__section {
    margin-bottom: 28px;
  }

  .privacy-page__section-title {
    font-size: 22px;
  }

  .privacy-page__subsection-title {
    font-size: 18px;
  }

  .privacy-page__paragraph,
  .privacy-page__list-item {
    font-size: 16px;
    line-height: 1.62;
  }

  .privacy-page__contact-link {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}
