/* ── Stack Tower — style.css ── */
/* Design: Bold black/white/gold — completely unique, no dark neon, no pastel */

/* ── Fonts ── */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito_400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito_700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito_800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito_900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #FFFFFF;
  color: #111111;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --gold: #F59E0B;
  --gold-dk: #D97706;
  --gold-lt: #FEF3C7;
  --black: #111111;
  --white: #FFFFFF;
  --grey: #F5F5F5;
  --grey-mid: #E5E5E5;
  --text-muted: #666666;
  --radius: 8px;
}

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111111;
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  font-size: 1.3rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  color: #CCCCCC;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #FFFFFF; background: rgba(245,158,11,0.15); }
.nav-cta {
  background: var(--gold) !important;
  color: #111111 !important;
  border-radius: 4px !important;
  font-weight: 900 !important;
  padding: 0.45rem 1.1rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: inherit;
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: #111111;
}
.btn-primary:hover { background: var(--gold-dk); }
.btn-outline {
  background: transparent;
  color: #111111;
  border: 2px solid #111111;
}
.btn-outline:hover { background: #111111; color: #FFFFFF; }
.btn-white {
  background: #FFFFFF;
  color: #111111;
}
.btn-white:hover { background: var(--gold-lt); }

/* ── Section ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--grey); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  background: var(--gold-lt);
  color: var(--gold-dk);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Hero ── */
.hero {
  background: #111111;
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(245,158,11,0.04) 0px,
    rgba(245,158,11,0.04) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
  color: #AAAAAA;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(245,158,11,0.25));
}

/* ── Features — numbered list style ── */
.features-numbered {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-num-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--grey-mid);
}
.feature-num-item:last-child { border-bottom: none; }
.feature-big-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: 0.8;
}
.feature-num-content h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 0.5rem;
}
.feature-num-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.feature-num-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold-lt);
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

/* ── Black showcase section ── */
.showcase-black {
  background: #111111;
  padding: 5rem 0;
}
.showcase-black-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.showcase-black h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.showcase-black p {
  color: #AAAAAA;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.showcase-black-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.showcase-black-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: #CCCCCC;
  font-size: 0.92rem;
}
.showcase-black-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.showcase-black-image img {
  border-radius: var(--radius);
  width: 100%;
  filter: drop-shadow(0 12px 32px rgba(245,158,11,0.2));
}

/* ── Steps — horizontal numbered ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey-mid);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111111;
  border: 3px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-item h3 {
  font-size: 0.95rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 0.4rem;
}
.step-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── CTA section ── */
.cta-section {
  background: var(--gold);
  padding: 4.5rem 2rem;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 0.8rem;
}
.cta-section p {
  color: rgba(17,17,17,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: #111111;
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: #AAAAAA;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── HTP page ── */
.htp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.htp-steps { display: flex; flex-direction: column; gap: 1.8rem; }
.htp-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.htp-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #111111;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.htp-step h3 { font-size: 1rem; font-weight: 900; margin-bottom: 0.3rem; color: #111111; }
.htp-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.htp-image img { border-radius: var(--radius); width: 100%; }

/* ── Controls table ── */
.controls-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-mid);
}
.controls-table th {
  background: #111111;
  color: var(--gold);
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.controls-table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 0.88rem;
  color: #333333;
}
.controls-table tr:last-child td { border-bottom: none; }
.controls-table tr:hover td { background: var(--gold-lt); }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-text h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem; color: #111111; }
.about-text p { color: #444444; line-height: 1.75; margin-bottom: 1rem; }
.about-image img { border-radius: var(--radius); width: 100%; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.tech-card {
  background: #FFFFFF;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tech-icon {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
}
.tech-card h4 { font-weight: 900; font-size: 0.92rem; color: #111111; }
.tech-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; border: 1px solid var(--grey-mid); border-radius: var(--radius); overflow: hidden; }
.faq-item { padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--grey-mid); background: #FFFFFF; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-weight: 900; color: #111111; margin-bottom: 0.5rem; font-size: 0.98rem; }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1px; background: var(--grey-mid); border: 1px solid var(--grey-mid); border-radius: var(--radius); overflow: hidden; }
.contact-card { background: #FFFFFF; padding: 1.3rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 6px; background: var(--gold-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-weight: 900; font-size: 0.88rem; color: #111111; margin-bottom: 0.2rem; }
.contact-card a, .contact-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; text-decoration: none; }
.contact-card a:hover { color: var(--gold-dk); }
.contact-form-wrap { background: #FFFFFF; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--grey-mid); }
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 900; color: #111111; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 800; color: #333333; margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit;
  color: #222222; background: #FFFFFF;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: #999999; margin-top: 0.8rem; text-align: center; }

/* ── Game wrap ── */
.game-wrap { max-width: 420px; margin: 0 auto; }
.game-hud {
  display: flex; gap: 1rem; justify-content: center; margin-bottom: 1rem;
}
.hud-item {
  background: #111111; border-radius: var(--radius);
  padding: 0.6rem 1.2rem; text-align: center;
  min-width: 80px; border: 1px solid rgba(245,158,11,0.3);
}
.hud-label { font-size: 0.7rem; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.hud-val { font-size: 1.4rem; font-weight: 900; color: #FFFFFF; }
.game-canvas-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
  border: 2px solid rgba(245,158,11,0.3);
}
.game-canvas-wrap canvas { display: block; width: 100%; }
.game-controls { display: flex; gap: 0.8rem; justify-content: center; margin-bottom: 0.8rem; }
.game-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.4rem; border: none; border-radius: var(--radius);
  background: var(--gold); color: #111111;
  font-weight: 900; font-size: 0.9rem; cursor: pointer;
  transition: background 0.2s; font-family: inherit;
}
.game-btn:hover { background: var(--gold-dk); }
.game-btn.secondary { background: #111111; color: #FFFFFF; border: 1px solid rgba(245,158,11,0.4); }
.game-btn.secondary:hover { background: #222222; }

/* ── Legal pages ── */
.legal-page-wrap { background: var(--grey); min-height: 60vh; padding: 3rem 0; }
.legal-container { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.legal-meta-bar {
  background: #111111;
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.legal-meta-item { font-size: 0.8rem; color: #AAAAAA; font-weight: 700; }
.legal-meta-item span { color: var(--gold); }
.legal-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.legal-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.legal-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #111111;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.legal-card h2 { font-size: 1.05rem; font-weight: 900; color: #111111; }
.legal-card p { font-size: 0.88rem; color: #444444; line-height: 1.7; margin-bottom: 0.6rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { padding-left: 1.2rem; margin: 0.5rem 0; }
.legal-card ul li { font-size: 0.88rem; color: #444444; line-height: 1.65; margin-bottom: 0.3rem; list-style: disc; }
.legal-highlight {
  background: var(--gold-lt);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: #333333;
  margin: 0.8rem 0;
  font-weight: 700;
}
.legal-contact-card {
  background: #111111;
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin-top: 2rem;
  color: #FFFFFF;
}
.legal-contact-card h3 { font-size: 1rem; font-weight: 900; color: var(--gold); margin-bottom: 0.8rem; }
.legal-contact-card p { font-size: 0.88rem; color: #AAAAAA; line-height: 1.65; }
.legal-contact-card a { color: var(--gold); }

/* ── Footer ── */
.footer {
  background: #FFFFFF;
  border-top: 3px solid #111111;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-mid);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  font-size: 1.2rem;
  color: #111111;
  margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--gold); }
.footer-logo img { width: 28px; height: 28px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-weight: 900; font-size: 0.85rem; color: #111111; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-dk); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-dk); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-title { font-size: 2.8rem; }
  .showcase-black-grid { grid-template-columns: 1fr; }
  .showcase-black-image { display: none; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-row::before { display: none; }
  .htp-grid { grid-template-columns: 1fr; }
  .htp-image { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .steps-row { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #111111; padding: 1rem; gap: 0.3rem; border-bottom: 2px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .feature-num-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .feature-big-num { font-size: 2.5rem; }
}


/* ══════════════════════════════════════════
   LEGAL PAGES (Privacy & Terms)
   Stack Tower — Gold/Amber Theme
══════════════════════════════════════════ */

.legal-hero {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 60%, #2a1f00 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.legal-hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: #F59E0B;
  border: 1px solid rgba(245,158,11,0.4);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.legal-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Meta bar */
.legal-meta-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  padding: 0.85rem 0;
}
.legal-meta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  align-items: center;
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 500;
}
.legal-meta-dot {
  color: #F59E0B;
  font-weight: 900;
}

/* Page wrap */
.legal-page-wrap {
  background: #F9FAFB;
  padding: 3rem 0 4rem;
}
.legal-container {
  max-width: 820px;
}

/* Cards */
.legal-card {
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 4px solid #F59E0B;
  padding: 2rem 2rem 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.legal-card:hover {
  box-shadow: 0 4px 16px rgba(245,158,11,0.12);
}
.legal-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.legal-card-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin: 0;
}
.legal-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #F59E0B;
  color: #111111;
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.legal-card p {
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.8;
  margin: 0 0 0.8rem;
}
.legal-card p:last-child { margin-bottom: 0; }

/* Highlight box */
.legal-highlight {
  background: #FFFBEB;
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: #92400E;
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Contact card inside legal */
.legal-contact-card {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  border-radius: 10px;
  padding: 1.5rem 1.8rem;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.legal-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.legal-contact-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .legal-hero { padding: 3.5rem 0 2.5rem; }
  .legal-card { padding: 1.5rem 1.2rem; }
  .legal-meta-inner { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .legal-meta-dot { display: none; }
}
