/* BACK BUTTON */
.back-header {
  position: fixed;
  top: 32px;
  left: 10%;
  z-index: 9999;
}

.back-link {
  text-decoration: none;
  font-size: 14px;
  color: #666;

  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.back-link:hover {
  opacity: 1;
  transform: translateX(-6px);
}

/* PAGE */
.legal {
  padding: 180px 10% 120px;
  max-width: 820px;
  margin: auto;
}

/* TITLE */
.legal h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

/* SUB */
.subtitle {
  color: #999;
  font-size: 13px;
  margin-bottom: 60px;
}

/* BLOCKS */
.legal-block {
  margin-bottom: 42px;
  padding-left: 18px;

  border-left: 2px solid rgba(0,0,0,0.08);
}

.legal-block h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.legal-block p {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}

/* subtle hover feel */
.legal-block:hover {
  border-left: 2px solid rgba(0,0,0,0.2);
}




/* GLOBAL FONT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

/* FOOTER */
.footer {
  margin-top: 140px;
  padding: 80px 10% 40px;

  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* GRID */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* 🔥 FIXED BRAND (egen class) */
.footer-brand {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.2px;
}

.footer-sub {
  margin-top: 6px;
  font-size: 13px;
  color: #888;
}

/* TITLES */
.footer-title {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* LINKS */
.footer a {
  display: block;
  text-decoration: none;

  font-size: 14px;
  color: #555;

  margin-bottom: 10px;

  transition: all 0.25s ease;
}

/* 🔥 SMOOTH HOVER */
.footer a:hover {
  color: #000;
  transform: translateX(3px);
}

/* DIVIDERS */
.footer-col {
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;

  width: 1px;
  height: 100%;

  background: rgba(0,0,0,0.06);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  text-align: center;

  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}



.doc-meta {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
  display: flex;
  gap: 8px;
}