/* ======================================
   PAXIPRO LEGAL PAGE
====================================== */

:root {

  --gold: #F5B800;
  --gold-light: #FFD34D;
  --gold-dark: #B87900;

  --black: #0A0A0A;
  --black-soft: #101010;
  --card: #111111;
  --card-light: #161616;

  --white: #FFFFFF;
  --text: #F5F5F5;

  --muted: #A7A7A7;
  --muted-dark: #777777;

  --border: rgba(245, 184, 0, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);

  --gold-bg: rgba(245, 184, 0, 0.08);

  --danger: #E5484D;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --container: 1240px;

}


/* ======================================
   RESET
====================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  background: var(--black);
  color: var(--text);

  line-height: 1.75;

  -webkit-font-smoothing: antialiased;

}


img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


.container {

  width: calc(100% - 40px);

  max-width: var(--container);

  margin: 0 auto;

}


/* ======================================
   HEADER
====================================== */

.site-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  height: 78px;

  display: flex;

  align-items: center;

  background: rgba(10, 10, 10, 0.88);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border-soft);

}


.header-inner {

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.brand {

  display: inline-flex;

  align-items: center;

}


.brand-logo {

  width: 150px;

  height: auto;

  display: block;

}


.header-right {

  display: flex;

  align-items: center;

  gap: 18px;

}


.document-badge {

  padding: 7px 12px;

  border-radius: 50px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  color: var(--gold);

  border: 1px solid var(--border);

  background: var(--gold-bg);

}


.support-link {

  font-size: 14px;

  color: var(--muted);

  transition: 0.2s ease;

}


.support-link:hover {
  color: var(--gold);
}


/* ======================================
   HERO
====================================== */

.hero {

  position: relative;

  overflow: hidden;

  padding: 115px 0 95px;

  border-bottom: 1px solid var(--border-soft);

  background:

    radial-gradient(
      circle at 50% 0%,
      rgba(245, 184, 0, 0.09),
      transparent 40%
    ),

    linear-gradient(
      180deg,
      #0A0A0A 0%,
      #0C0C0C 100%
    );

}


.hero-inner {

  position: relative;

  z-index: 2;

  max-width: 850px;

}


.hero-badge {

  display: inline-flex;

  padding: 8px 14px;

  margin-bottom: 25px;

  border-radius: 50px;

  background: var(--gold-bg);

  border: 1px solid var(--border);

  color: var(--gold);

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;

}


.hero h1 {

  max-width: 780px;

  margin-bottom: 19px;

  font-size: clamp(42px, 7vw, 76px);

  line-height: 1.02;

  letter-spacing: -0.04em;

  color: var(--white);

}


.hero-subtitle {

  max-width: 720px;

  font-size: 18px;

  color: var(--muted);

  line-height: 1.7;

}


.hero-meta {

  display: flex;

  align-items: center;

  gap: 28px;

  margin-top: 40px;

}


.meta-item {

  display: flex;

  flex-direction: column;

  gap: 2px;

}


.meta-label {

  font-size: 12px;

  font-weight: 700;

  color: var(--muted-dark);

  text-transform: uppercase;

  letter-spacing: 0.08em;

}


.meta-item strong {

  font-size: 14px;

  color: var(--text);

}


.meta-divider {

  width: 1px;

  height: 38px;

  background: var(--border-soft);

}


.hero-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  opacity: 0.4;

}


.hero-glow-one {

  width: 380px;

  height: 380px;

  background: rgba(245, 184, 0, 0.12);

  top: -220px;

  left: 10%;

}


.hero-glow-two {

  width: 500px;

  height: 500px;

  background: rgba(245, 184, 0, 0.05);

  right: -300px;

  bottom: -300px;

}


/* ======================================
   LEGAL LAYOUT
====================================== */

.legal-page {

  padding: 75px 0 100px;

}


.legal-layout {

  display: grid;

  grid-template-columns: 280px minmax(0, 1fr);

  gap: 55px;

  align-items: start;

}


/* ======================================
   SIDEBAR
====================================== */

.sidebar {

  position: sticky;

  top: 105px;

}


.sidebar-card {

  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--card);

  border: 1px solid var(--border-soft);

}


.sidebar-heading {

  padding: 24px 22px 18px;

  border-bottom: 1px solid var(--border-soft);

}


.sidebar-small {

  display: block;

  margin-bottom: 3px;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: var(--gold);

  font-weight: 800;

}


.sidebar-heading h3 {

  font-size: 20px;

  color: var(--white);

}


.toc {

  max-height: calc(100vh - 210px);

  overflow-y: auto;

  padding: 10px;

}


.toc::-webkit-scrollbar {
  width: 4px;
}


.toc::-webkit-scrollbar-thumb {

  background: rgba(245, 184, 0, 0.3);

  border-radius: 100px;

}


.toc-link {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 11px 12px;

  margin-bottom: 3px;

  border-radius: 9px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.3;

  transition: all 0.2s ease;

}


.toc-link span {

  width: 24px;

  flex-shrink: 0;

  font-size: 10px;

  color: var(--muted-dark);

  font-weight: 700;

}


.toc-link:hover {

  background: rgba(255, 255, 255, 0.035);

  color: var(--white);

}


.toc-link.active {

  background: var(--gold-bg);

  color: var(--gold);

}


.toc-link.active span {

  color: var(--gold);

}


/* ======================================
   CONTENT
====================================== */

.legal-content {

  min-width: 0;

}


.legal-section {

  position: relative;

  padding: 0 0 68px;

  margin-bottom: 65px;

  border-bottom: 1px solid var(--border-soft);

  scroll-margin-top: 120px;

}


.first-section {
  padding-top: 0;
}


.section-number {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 42px;

  height: 30px;

  margin-bottom: 12px;

  padding: 0 10px;

  border-radius: 7px;

  background: var(--gold-bg);

  border: 1px solid var(--border);

  color: var(--gold);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.06em;

}


.legal-section h2 {

  margin-bottom: 23px;

  font-size: clamp(27px, 4vw, 38px);

  line-height: 1.15;

  letter-spacing: -0.025em;

  color: var(--white);

}


.legal-section h3 {

  color: var(--white);

}


.legal-section p {

  max-width: 850px;

  margin-bottom: 17px;

  color: #C5C5C5;

  font-size: 15px;

}


.legal-section strong {

  color: var(--white);

  font-weight: 700;

}


/* ======================================
   LEGAL LISTS
====================================== */

.legal-list {

  list-style: none;

  max-width: 850px;

  margin: 24px 0;

}


.legal-list li {

  position: relative;

  margin-bottom: 13px;

  padding: 14px 17px 14px 46px;

  border-radius: var(--radius-sm);

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid var(--border-soft);

  color: #C8C8C8;

  font-size: 14px;

}


.legal-list li::before {

  content: "";

  position: absolute;

  top: 20px;

  left: 20px;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow: 0 0 12px rgba(245, 184, 0, 0.45);

}


/* ======================================
   SPECIAL BOXES
====================================== */

.important-box {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  max-width: 850px;

  margin: 28px 0;

  padding: 20px;

  border-radius: var(--radius-md);

  border: 1px solid var(--border);

  background: var(--gold-bg);

}


.important-icon {

  width: 34px;

  height: 34px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--gold);

  color: var(--black);

  font-weight: 900;

}


.important-box p {

  margin: 4px 0 0;

  font-size: 14px;

}


.highlight-statement {

  max-width: 850px;

  margin: 5px 0 25px;

  padding: 20px 22px;

  border-left: 3px solid var(--gold);

  background: linear-gradient(
    90deg,
    rgba(245, 184, 0, 0.10),
    transparent
  );

  color: var(--white);

  font-size: 17px;

  font-weight: 700;

}


/* ======================================
   PACKAGES
====================================== */

.package-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  max-width: 850px;

  margin: 27px 0;

}


.package-card {

  position: relative;

  padding: 24px;

  border-radius: var(--radius-md);

  background: linear-gradient(
    145deg,
    #141414,
    #0E0E0E
  );

  border: 1px solid var(--border-soft);

  transition: 0.25s ease;

}


.package-card:hover {

  transform: translateY(-2px);

  border-color: var(--border);

}


.package-number {

  display: inline-block;

  margin-bottom: 15px;

  color: var(--gold);

  font-size: 11px;

  font-weight: 800;

}


.package-card h3 {

  margin-bottom: 10px;

  font-size: 18px;

}


.package-card p {

  margin-bottom: 8px;

  font-size: 13.5px;

}


/* ======================================
   WARNING / DRAFT
====================================== */

.warning-box,
.draft-notice,
.liability-box {

  max-width: 850px;

  margin: 27px 0;

  padding: 22px;

  border-radius: var(--radius-md);

}


.warning-box {

  background: rgba(229, 72, 77, 0.06);

  border: 1px solid rgba(229, 72, 77, 0.22);

}


.warning-box strong {

  color: #FF6B70;

}


.warning-box p {

  margin: 5px 0 0;

  font-size: 14px;

}


.draft-notice {

  background: var(--gold-bg);

  border: 1px dashed rgba(245, 184, 0, 0.35);

}


.draft-notice span {

  display: inline-block;

  margin-bottom: 8px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.06em;

}


.draft-notice p {

  margin: 0;

  font-size: 14px;

}


.liability-box {

  background: #101010;

  border: 1px solid rgba(245, 184, 0, 0.22);

  box-shadow:
    inset 0 0 40px rgba(245, 184, 0, 0.025);

}


.liability-box > strong {

  display: block;

  margin-bottom: 14px;

  color: var(--gold);

  font-size: 15px;

}


.liability-box p {

  font-size: 13.5px;

  line-height: 1.8;

}


/* ======================================
   CONTACT
====================================== */

.contact-card {

  display: flex;

  align-items: center;

  gap: 17px;

  max-width: 500px;

  margin: 25px 0;

  padding: 20px;

  border-radius: var(--radius-md);

  background: var(--card);

  border: 1px solid var(--border-soft);

  transition: 0.2s ease;

}


.contact-card:hover {

  border-color: var(--border);

  transform: translateY(-2px);

}


.contact-icon {

  width: 47px;

  height: 47px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 11px;

  background: var(--gold);

  color: var(--black);

  font-size: 20px;

  font-weight: 900;

}


.contact-card div:last-child {

  display: flex;

  flex-direction: column;

}


.contact-card span {

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.07em;

}


.contact-card strong {

  color: var(--white);

  font-size: 15px;

}


.company-placeholder {

  max-width: 500px;

  padding: 18px;

  border-radius: var(--radius-sm);

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid var(--border-soft);

}


.company-placeholder p {

  margin: 0;

  font-size: 13px;

}


/* ======================================
   DOCUMENT FOOTER
====================================== */

.document-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 24px 0 0;

}


.document-footer div {

  display: flex;

  flex-direction: column;

}


.document-footer strong {

  font-size: 13px;

  color: var(--white);

}


.document-footer span {

  color: var(--muted-dark);

  font-size: 11px;

}


.document-footer a {

  color: var(--gold);

  font-size: 13px;

  font-weight: 700;

}


/* ======================================
   SITE FOOTER
====================================== */

.site-footer {

  border-top: 1px solid var(--border-soft);

  background: #080808;

}


.footer-inner {

  min-height: 110px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

}


.footer-logo {

  width: 120px;

}


.footer-inner p {

  color: var(--muted-dark);

  font-size: 12px;

}


/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 980px) {

  .legal-layout {

    grid-template-columns: 1fr;

    gap: 35px;

  }


  .sidebar {

    position: relative;

    top: 0;

  }


  .sidebar-card {

    border-radius: 14px;

  }


  .toc {

    display: flex;

    overflow-x: auto;

    overflow-y: hidden;

    max-height: none;

    gap: 5px;

    padding: 10px;

  }


  .toc-link {

    flex-shrink: 0;

    white-space: nowrap;

  }


  .sidebar-heading {

    padding: 18px 18px 12px;

  }

}


@media (max-width: 700px) {

  .container {

    width: calc(100% - 28px);

  }


  .site-header {

    height: 68px;

  }


  .brand-logo {

    width: 125px;

  }


  .document-badge {
    display: none;
  }


  .support-link {

    font-size: 12px;

  }


  .hero {

    padding: 80px 0 65px;

  }


  .hero h1 {

    font-size: 46px;

  }


  .hero-subtitle {

    font-size: 15px;

  }


  .hero-meta {

    align-items: flex-start;

    gap: 17px;

  }


  .legal-page {

    padding-top: 40px;

  }


  .legal-section {

    margin-bottom: 45px;

    padding-bottom: 45px;

  }


  .legal-section h2 {

    font-size: 29px;

  }


  .legal-section p {

    font-size: 14px;

  }


  .package-grid {

    grid-template-columns: 1fr;

  }


  .important-box {

    padding: 16px;

  }


  .document-footer {

    align-items: flex-start;

    flex-direction: column;

  }


  .footer-inner {

    flex-direction: column;

    justify-content: center;

    padding: 25px 0;

  }

}


@media (max-width: 450px) {

  .hero h1 {

    font-size: 39px;

  }


  .hero-meta {

    flex-direction: column;

  }


  .meta-divider {

    display: none;

  }


  .legal-list li {

    padding-left: 40px;

  }

}
/* ======================================
   PRIVACY POLICY TABLE
====================================== */

.privacy-table-wrap {
  width: 100%;
  max-width: 850px;
  margin: 24px 0 32px;
  overflow-x: auto;

  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--card);
}

.privacy-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.privacy-table th {
  padding: 15px 16px;

  background: rgba(245, 184, 0, 0.08);

  border-bottom: 1px solid var(--border);

  color: var(--gold);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  text-align: left;
}

.privacy-table td {
  padding: 16px;

  border-bottom: 1px solid var(--border-soft);

  color: #BEBEBE;

  font-size: 13px;
  line-height: 1.6;

  vertical-align: top;
}

.privacy-table tbody tr:last-child td {
  border-bottom: none;
}

.privacy-table tbody tr {
  transition: background 0.2s ease;
}

.privacy-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.privacy-table td strong {
  color: var(--white);
}

@media (max-width: 700px) {
  .privacy-table-wrap {
    border-radius: 10px;
  }
}