:root {
  --navy: #05113a;
  --cyan: #009fe3;
  --ink: #071331;
  --muted: #61708b;
  --pale: #f3f8fc;
  --line: #dce7ef;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f5f8fb;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.legal-header {
  height: 82px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 6vw, 92px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-brand {
  display: flex;
  width: 170px;
  height: 58px;
  overflow: hidden;
  align-items: center;
}
.legal-brand img {
  width: 145px;
  transform: scale(1.55);
  transform-origin: left center;
}
.legal-back {
  font-size: 12px;
  font-weight: 700;
  color: #c3cee0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 16px;
  transition: 0.2s;
}
.legal-back:hover {
  color: #fff;
  border-color: var(--cyan);
}
.legal-hero {
  background: linear-gradient(135deg, #05113a, #08235c);
  color: #fff;
  padding: 75px clamp(22px, 9vw, 145px) 95px;
  position: relative;
  overflow: hidden;
}
.legal-hero:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -210px;
  top: -280px;
  background: radial-gradient(circle, rgba(0, 159, 227, 0.24), transparent 68%);
}
.legal-kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #76d4ff;
  font-weight: 700;
  text-transform: uppercase;
}
.legal-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 17px 0 18px;
  position: relative;
  z-index: 1;
}
.legal-hero p {
  color: #aebdd3;
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
  font-size: 14px;
}
.legal-update {
  display: inline-block;
  margin-top: 25px;
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  color: #93a6c3;
}
.legal-layout {
  max-width: 1120px;
  margin: -38px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.legal-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  position: sticky;
  top: 20px;
  box-shadow: 0 12px 35px rgba(5, 17, 58, 0.05);
}
.legal-nav strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #315271;
  margin-bottom: 13px;
}
.legal-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid #edf2f6;
  color: #6d7c91;
  font-size: 11px;
  line-height: 1.45;
}
.legal-nav a:last-child {
  border: 0;
}
.legal-nav a:hover {
  color: var(--cyan);
}
.legal-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 16px 45px rgba(5, 17, 58, 0.06);
}
.legal-intro {
  font-size: 15px;
  line-height: 1.85;
  color: #52637b;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}
.legal-content section {
  scroll-margin-top: 24px;
  margin-bottom: 38px;
}
.legal-content section:last-child {
  margin-bottom: 0;
}
.legal-content h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 15px;
  color: #0a1a40;
}
.legal-content h2 span {
  color: var(--cyan);
  font-size: 12px;
  margin-right: 8px;
}
.legal-content h3 {
  font-size: 15px;
  margin: 23px 0 9px;
}
.legal-content p,
.legal-content li {
  font-size: 13px;
  line-height: 1.85;
  color: #5e6d82;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-content li {
  margin-bottom: 7px;
}
.legal-note {
  border-left: 3px solid var(--cyan);
  background: #f1f9fd;
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
}
.legal-note p {
  margin: 0;
  color: #36536b;
}
.legal-contact {
  background: linear-gradient(135deg, #061640, #0a2b69);
  color: #fff;
  border-radius: 10px;
  padding: 26px;
  margin-top: 22px;
}
.legal-contact strong {
  display: block;
  font-size: 17px;
  margin-bottom: 9px;
}
.legal-contact p {
  color: #a9b9cf;
  margin: 0 0 18px;
}
.legal-contact a {
  display: inline-flex;
  background: var(--cyan);
  color: #fff;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
}
.legal-footer {
  background: #030b28;
  color: #7f90ab;
  padding: 27px clamp(22px, 6vw, 92px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}
.legal-footer div {
  display: flex;
  gap: 20px;
}
.legal-footer a:hover {
  color: #fff;
}
@media (max-width: 800px) {
  .legal-layout {
    grid-template-columns: 1fr;
    margin-top: -26px;
  }
  .legal-nav {
    position: static;
  }
  .legal-nav a {
    display: inline-block;
    margin-right: 14px;
  }
  .legal-footer {
    flex-direction: column;
  }
  .legal-hero {
    padding-top: 55px;
  }
}
@media (max-width: 520px) {
  .legal-header {
    height: 70px;
  }
  .legal-brand {
    width: 145px;
  }
  .legal-back {
    padding: 10px 11px;
  }
  .legal-hero {
    padding-left: 22px;
    padding-right: 22px;
  }
  .legal-layout {
    padding: 0 14px;
  }
  .legal-content {
    padding: 28px 22px;
  }
  .legal-nav {
    display: none;
  }
}
