.section-wrapper.privacy-wrapper {
  width: min(1380px, calc(100% - 40px));
  margin: 120px auto 90px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.privacy-hero {
  position: relative;
  padding: 42px 38px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(
      80% 100% at 50% 0%,
      rgba(48, 177, 41, 0.12),
      rgba(48, 177, 41, 0) 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(10, 10, 12, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.privacy-hero::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(48, 177, 41, 0),
    rgba(48, 177, 41, 0.78),
    rgba(48, 177, 41, 0)
  );
  opacity: 0.65;
  pointer-events: none;
}

.privacy-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(48, 177, 41, 0.95);
  position: relative;
  z-index: 1;
}

.section-heading {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.section-subtitle.privacy-lead {
  margin: 0;
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
  position: relative;
  z-index: 1;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.privacy-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(8, 9, 12, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.privacy-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(48, 177, 41, 0),
    rgba(48, 177, 41, 0.72),
    rgba(48, 177, 41, 0)
  );
  opacity: 0.5;
  pointer-events: none;
}

.privacy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 177, 41, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(8, 9, 12, 0.82);
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(48, 177, 41, 0.08) inset;
}

.privacy-title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.privacy-text {
  margin: 0 0 14px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.privacy-text:last-child {
  margin-bottom: 0;
}

.privacy-text + .privacy-list {
  margin-top: 2px;
}

.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.privacy-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  font-size: 0.96rem;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3be22e, #30b129);
  box-shadow: 0 0 12px rgba(48, 177, 41, 0.42);
  transform: translateY(-50%);
}

.privacy-card a,
.privacy-hero a {
  color: #3be22e;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.16s ease,
    opacity 0.16s ease,
    text-shadow 0.16s ease;
  position: relative;
  z-index: 1;
}

.privacy-card a:hover,
.privacy-hero a:hover {
  color: #3be22e;
  text-shadow: 0 0 14px rgba(48, 177, 41, 0.18);
}

.privacy-card a:focus-visible,
.privacy-hero a:focus-visible {
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(48, 177, 41, 0.2);
}

@media (max-width: 1100px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .section-wrapper.privacy-wrapper {
    width: min(100% - 24px, 1380px);
    margin: 105px auto 70px;
    gap: 20px;
  }

  .privacy-hero {
    padding: 30px 22px;
  }

  .privacy-card {
    padding: 22px 18px 20px;
  }
}

@media (max-width: 640px) {
  .section-wrapper.privacy-wrapper {
    margin: 92px auto 56px;
  }

  .section-heading {
    font-size: 1.85rem;
  }

  .section-subtitle.privacy-lead,
  .privacy-text,
  .privacy-list li {
    font-size: 0.93rem;
    line-height: 1.75;
  }

  .privacy-title {
    font-size: 1.02rem;
  }

  .privacy-hero {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .privacy-card {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }
}