/* ============================================================
   AUXIONMARKETS — Premium Inner Page Styles
   Extends legal.css with rich visual components
   ============================================================ */

/* ── Premium Hero Banner ─────────────── */
.page-hero {
  padding: 160px 0 80px 0;
  background: var(--bg-primary);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.hero-with-bg {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .section-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
  color: var(--text-dark);
}
.page-hero .hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ── Hero Stats Row ─────────────── */
.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.hero-stat .stat-val {
  font-family: var(--font-number);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-stat .stat-val span {
  color: var(--accent);
}
.hero-stat .stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Content Sections ─────────────── */
.page-section {
  padding: 100px 0;
}
.page-section.bg-white { background: var(--bg-primary); }
.page-section.bg-grey { background: var(--bg-secondary); }
.page-section.bg-dark {
  background: #0c1220;
  color: #fff;
}

.page-section .section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.page-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-section.bg-dark h2 { color: #fff; }
.page-section .section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* ── Values / Features Grid ─────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}
.value-card .v-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.value-card .v-icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Timeline ─────────────── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}
.tl-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 48px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--bg-primary);
  z-index: 1;
}
.tl-year {
  font-family: var(--font-number);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.tl-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Markets Asset Cards ─────────────── */
.asset-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.asset-card {
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.asset-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.asset-card .ac-count {
  font-family: var(--font-number);
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.asset-card .ac-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.asset-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.asset-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.asset-card .ac-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.asset-card .ac-tag {
  background: var(--bg-secondary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Split Content (Text + Visual) ─────────────── */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }
.split-visual {
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 1px solid var(--border-light);
}
.split-visual .platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.pf-item {
  background: var(--bg-primary);
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: transform 0.3s ease;
}
.pf-item:hover { transform: translateY(-4px); }
.pf-item .pf-val {
  font-family: var(--font-number);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 6px;
}
.pf-item .pf-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── CTA Banner ─────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.cta-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  display: inline-flex;
}

/* ── Responsive ─────────────── */
@media (max-width: 991px) {
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .asset-cards { grid-template-columns: 1fr 1fr; }
  .split-content { grid-template-columns: 1fr; gap: 40px; }
  .split-content.reverse { direction: ltr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .asset-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
}
