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

body.privacy-page {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: #1a1a1a;
  font-family: "Barlow", Arial, sans-serif;
}

.privacy-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(20, 20, 20, 0.97);
  padding: 0 48px;
  backdrop-filter: blur(12px);
}

.privacy-nav-inner,
.privacy-hero-inner,
.privacy-layout,
.privacy-footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.privacy-logo,
.privacy-back-link,
.privacy-footer-back {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.privacy-logo {
  gap: 12px;
}

.privacy-mark svg {
  display: block;
  width: 28px;
  height: 28px;
}

.privacy-mark rect {
  fill: #e5312c;
}

.privacy-mark path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.privacy-wordmark {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.privacy-wordmark strong {
  color: #e5312c;
}

.privacy-back-link {
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.privacy-back-link:hover {
  color: #fff;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  padding: 64px 48px 56px;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.privacy-hero-inner {
  position: relative;
  z-index: 1;
}

.privacy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.privacy-breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.privacy-breadcrumb a:hover {
  color: #e5312c;
}

.privacy-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
}

.privacy-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 500;
}

.privacy-layout {
  padding: 64px 48px 96px;
}

.privacy-content {
  max-width: 900px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 32px;
  border: 1px solid rgba(229, 49, 44, 0.2);
  border-radius: 3px;
  background: rgba(229, 49, 44, 0.08);
  color: #e5312c;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.privacy-content h2 {
  margin: 48px 0 16px;
  border-top: 2px solid #e5312c;
  padding-top: 16px;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.privacy-content section:first-of-type h2 {
  margin-top: 0;
}

.privacy-content ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  counter-reset: policy-counter;
  list-style: none;
}

.privacy-content ol > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  counter-increment: policy-counter;
}

.privacy-content ol > li::before {
  content: counter(policy-counter) ".";
  flex: 0 0 20px;
  padding-top: 3px;
  color: #e5312c;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.privacy-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.privacy-content ul li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-radius: 50%;
  background: #e5312c;
}

.privacy-content a {
  color: #e5312c;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #111;
  padding: 32px 48px;
}

.privacy-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.privacy-footer span {
  color: rgba(255, 255, 255, 0.22);
  font-size: 11.5px;
}

.privacy-footer-back {
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11.5px;
  transition: color 0.2s;
}

.privacy-footer-back:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 700px) {
  .privacy-nav,
  .privacy-hero,
  .privacy-layout,
  .privacy-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .privacy-nav-inner {
    min-height: 72px;
  }

  .privacy-back-link {
    font-size: 11px;
  }

  .privacy-layout {
    padding-top: 44px;
    padding-bottom: 72px;
  }
}

@media (max-width: 460px) {
  .privacy-nav,
  .privacy-hero,
  .privacy-layout,
  .privacy-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .privacy-nav-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
  }
}
