/* =============================================
   SOS — LEGAL PAGES STYLES (Privacy & Terms)
   ============================================= */

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--frost);
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 72px;
  z-index: 100;
}
.nav-logo img { width: 160px; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  color: var(--slate);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.nav-link.active {
  color: var(--ink);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.nav-btn {
  background-color: #1549D4;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
}

/* LEGAL SECTION */
.legal-section {
  background: var(--frost);
  padding: 120px 48px 80px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* HEADER */
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E8F0;
}
.legal-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-meta {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 4px;
}
.legal-intro {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(13,19,33,0.78);
  margin-top: 20px;
}
.legal-warning {
  background: rgba(13,19,33,0.04);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
  margin: 24px 0;
}

/* BODY */
.legal-body p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(13,19,33,0.82);
  margin-bottom: 16px;
}
.legal-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
}
.legal-subsection-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(13,19,33,0.82);
  padding-left: 20px;
  position: relative;
}
.legal-list li::before {
  content: '•';
  color: var(--blue);
  position: absolute;
  left: 0;
}
.legal-contact {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-top: 4px solid var(--blue);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 16px;
}
.legal-contact p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(13,19,33,0.82);
  margin-bottom: 4px;
}

/* FOOTER */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(94,110,130,0.15);
  padding: 40px 48px;
  text-align: center;
}
.footer-inner { max-width: 760px; margin: 0 auto; }
.footer-logo {
  height: 32px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
}
.footer-descriptor {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--slate);
}
.footer-nav a:hover { color: var(--white); }
.footer-phone {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 20px;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(94,110,130,0.15);
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 12px;
  color: #3D4E63;
}
.footer-legal a { color: #3D4E63; }
