/* ============================================================
   SAE Imports — Design System
   Heavy Equipment Logistics Specialist
   ============================================================ */

/* ---------- 1. VARIABLES ---------- */
:root {
  /* Brand */
  --navy: #0a1628;
  --navy-light: #132042;
  --navy-mid: #1a2744;
  --blue: #1a73e8;
  --blue-light: #3b8cf5;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-grad: linear-gradient(135deg, #f97316, #ef4444);

  /* Surfaces — Dark Mode Only */
  --bg: #0c1222;
  --bg-alt: #111827;
  --bg-card: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border: #334155;

  /* Status */
  --success: #22c55e;
  --danger: #ef4444;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Layout */
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 6px rgba(0,0,0,.3);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.4);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.5);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: 300ms;
}


/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--blue-light); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

/* ---------- 3. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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


.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: var(--text);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--duration) var(--ease);
}

.nav-desktop a:hover { color: var(--orange); }
.nav-desktop a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--orange-grad);
  color: white !important;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  color: white;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text);
  font-size: var(--text-2xl);
}


/* ---------- 4. HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  color: white;
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(26, 115, 232, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,.9);
}

.hero-badge i { color: var(--orange); }

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: white;
}

.hero h1 .highlight {
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background: var(--orange-grad);
  color: white;
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  color: white;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.cta-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,.1);
  color: white;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--orange);
  display: block;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), rgba(26, 115, 232, 0.2));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.15);
}

/* ---------- 5. SECTIONS ---------- */
.section {
  padding: var(--space-4xl) var(--space-xl);
}

.section--alt {
  background: var(--bg-alt);
}

.section--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
}

.section--navy h2,
.section--navy h3 { color: white; }

.section--navy .section-desc { color: rgba(255,255,255,.8); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- 6. CARDS ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-2xl);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--orange);
  margin-bottom: var(--space-lg);
}

.card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--orange);
  transition: gap var(--duration) var(--ease);
}

.card-link:hover {
  gap: var(--space-sm);
  color: var(--orange-dark);
}

.card--bordered-top {
  border-top: 3px solid var(--orange);
}

.card-highlights {
  margin-bottom: var(--space-lg);
}

.card-highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}

.card-highlights li i {
  color: var(--success);
  font-size: var(--text-base);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Equipment cards */
.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-2xl);
  text-align: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.equipment-card .card-icon {
  margin: 0 auto var(--space-lg);
  width: 64px;
  height: 64px;
  font-size: var(--text-3xl);
}

.equipment-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.equipment-card .weight {
  font-size: var(--text-sm);
  color: var(--orange);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.equipment-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- 7. WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.why-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.why-card .card-icon {
  margin: 0 auto var(--space-lg);
  background: rgba(26, 115, 232, 0.1);
  color: var(--blue);
}

.why-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.why-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ---------- 8. FOUNDER SECTION ---------- */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,.1);
}

.founder-content blockquote {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
  border-left: 3px solid var(--orange);
  font-style: italic;
}

.founder-name {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text);
}

.founder-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---------- 9. TRUST BAR ---------- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-xl) 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.trust-item i {
  font-size: var(--text-xl);
  color: var(--orange);
}

/* ---------- 10. CTA SECTION ---------- */
.cta-section {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
}

.cta-section h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: white;
}

.cta-section .section-desc {
  color: rgba(255,255,255,.8);
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  text-decoration: none;
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

/* ---------- 11. FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: var(--space-4xl) var(--space-xl) var(--space-xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: var(--text-lg);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col a {
  color: rgba(255,255,255,.6);
  font-size: var(--text-sm);
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover { color: var(--orange); }

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

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
}

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

/* ---------- 12. MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  padding: var(--space-xl);
  flex-direction: column;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: var(--text-2xl);
  color: var(--text);
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu nav a {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu nav a:hover { color: var(--orange); }

.mobile-menu .header-cta {
  margin-top: var(--space-xl);
  text-align: center;
  justify-content: center;
  padding: var(--space-lg);
  font-size: var(--text-lg);
}

/* ---------- 13. ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 14. RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: var(--text-4xl); }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { max-width: 300px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-4xl: 3rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

  .nav-desktop { display: none; }
  .header-cta.desktop-only { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: var(--space-3xl) var(--space-md); }
  .hero h1 { font-size: var(--text-3xl); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .hero-stats { gap: var(--space-xl); }

  .section { padding: var(--space-3xl) var(--space-md); }
  .section-header h2 { font-size: var(--text-2xl); }

  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .cta-section h2 { font-size: var(--text-2xl); }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Small mobile */
@media (max-width: 375px) {
  .header-inner { padding: var(--space-md); }
  .hero { padding: var(--space-2xl) var(--space-md); }
  .hero-stats { flex-direction: column; gap: var(--space-md); }
}

/* ---------- 15. UTILITIES ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ---------- 16. FORMS ---------- */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--duration) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

/* ---------- 17. FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-xl);
}

.faq-question {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item ul li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

/* ---------- 18. LEGAL PAGES ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul {
  padding-left: var(--space-xl);
  list-style: disc;
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}
