@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --mid-gray: #2a2a2a;
  --text-gray: #888888;
  --light-gray: #cccccc;
  --white: #f5f5f5;
  --pure-white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #d4b95e;
  --gold-dark: #b8943f;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --section-padding: 120px 0;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar.scrolled .navbar-logo img {
  height: 36px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-gray);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links a.active {
  color: var(--gold);
}

.navbar-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--mid-gray);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--pure-white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-line {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}

/* =================== SECTIONS =================== */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--pure-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 80px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
}

.section-header.center .section-divider {
  margin: 16px auto;
}

/* =================== VALUE PROPOSITION =================== */
.value-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition);
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.value-card:hover::before {
  width: 60px;
}

.value-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 20px;
}

.value-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card ul li {
  font-size: 0.92rem;
  color: var(--text-gray);
  padding-left: 16px;
  position: relative;
}

.value-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 1px;
  background: var(--gold);
}

/* =================== HOW IT WORKS =================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  background: var(--black);
  position: relative;
  z-index: 2;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* =================== CREDIBILITY =================== */
.credibility-section {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--dark);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.credibility-item {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.credibility-item:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.credibility-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credibility-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.credibility-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 8px;
}

.credibility-item p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* =================== CTA BANNER =================== */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-title {
  margin-bottom: 16px;
}

.cta-banner .section-subtitle {
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== FORMS =================== */
.form-section {
  padding: var(--section-padding);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-info {
  padding-right: 40px;
}

.form-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--pure-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.form-info p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.form-info ul li {
  font-size: 0.92rem;
  color: var(--light-gray);
  padding-left: 20px;
  position: relative;
}

.form-info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.form-wrapper {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.file-upload {
  position: relative;
  border: 1px dashed rgba(255,255,255,0.12);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload:hover {
  border-color: var(--gold);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.form-wrapper .btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 4px;
}

/* =================== PAGE HERO =================== */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-label {
  margin-bottom: 20px;
}

.page-hero .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 700px;
}

.page-hero .section-subtitle {
  margin-top: 16px;
  max-width: 560px;
}

/* =================== DEALS =================== */
.deals-locked {
  text-align: center;
  padding: 80px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

.deals-locked .lock-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.deals-locked .lock-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.deals-locked h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 16px;
}

.deals-locked p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.deals-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.deal-teaser-card {
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--dark);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.deal-teaser-card::after {
  content: 'PRIVATE';
  position: absolute;
  top: 16px;
  right: -28px;
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 4px 32px;
  font-weight: 600;
}

.deal-teaser-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.deal-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.deal-teaser-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--pure-white);
  margin-bottom: 12px;
}

.deal-teaser-card .deal-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deal-meta span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.deal-meta span.blurred {
  filter: blur(5px);
  user-select: none;
}

/* =================== ABOUT =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 16px;
  margin-top: 40px;
}

.about-content h3:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-sidebar {
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
  background: var(--dark);
}

.about-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 28px;
}

.about-stat {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-stat h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.about-stat p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.principle-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.principle-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.principle-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 10px;
}

.principle-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== FOOTER =================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .navbar-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand .navbar-logo img {
  height: 36px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-gray);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* =================== ANIMATIONS =================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .value-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid::before {
    display: none;
  }

  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-info {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .deals-teaser-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: var(--transition);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .hero-line {
    display: none;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero {
    padding: 140px 0 60px;
  }
}

/* =================== LEGAL PAGES =================== */
.legal-content {
  padding: 0 0 120px;
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-gray);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body p a {
  color: var(--gold);
}

.legal-body p a:hover {
  text-decoration: underline;
}

.legal-body ul {
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body ul li {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.legal-body ul li strong {
  color: var(--light-gray);
}

/* =================== UTILITY =================== */
.text-gold { color: var(--gold); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-40 { margin-bottom: 40px; }
