/* =========================================================
   Federal Anti-DEI Compliance Auditor — Design System
   Government-Official Theme: Navy / Gold / Red
   ========================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --color-primary:           #1a2b4a;
  --color-primary-light:     #2d4a7a;
  --color-primary-dark:      #0f1a2e;
  --color-accent:            #c5a44e;
  --color-accent-light:      #d4b968;
  --color-accent-dark:       #a8893a;
  --color-danger:            #8b1a1a;
  --color-danger-light:      #a63232;
  --color-bg:                #ffffff;
  --color-bg-alt:            #f5f6f8;
  --color-bg-dark:           #1a2b4a;
  --color-text:              #1a1a2e;
  --color-text-secondary:    #4b5563;
  --color-text-muted:        #6b7280;
  --color-text-on-dark:      #f0f0f0;
  --color-border:            #d1d5db;
  --color-compliant:         #166534;
  --color-at-risk:           #b45309;
  --color-non-compliant:     #8b1a1a;

  /* Typography */
  --font-heading: 'Merriweather', 'Georgia', serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Consolas', 'Courier New', monospace;

  /* Type Scale */
  --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;

  /* Spacing */
  --section-py-desktop: 80px;
  --section-py-mobile:  48px;
  --container-px:       24px;
  --max-width:          1200px;

  /* Misc */
  --radius:     4px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg:  0 4px 16px rgba(0,0,0,0.16);
  --transition: 150ms ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

a:hover { color: var(--color-primary); }

ul, ol { list-style: none; }

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

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py-mobile);
}

@media (min-width: 1024px) {
  .section { padding-block: var(--section-py-desktop); }
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--color-text-on-dark);
}

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

/* ---- Grid Helpers ---- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 12px 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-primary-dark);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(197,164,78,0.35);
}

.btn-primary:active {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.btn-lg {
  font-size: var(--text-base);
  padding: 16px 48px;
}

.btn-on-dark {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.btn-on-dark:hover, .btn-on-dark:focus-visible {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-primary-dark);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(197,164,78,0.45);
}

/* ---- Alert Box (Government Warning) ---- */
.alert-box {
  border-left: 4px solid var(--color-danger);
  background-color: #fef2f2;
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.alert-box__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-danger);
  font-size: var(--text-lg);
  margin-bottom: 8px;
}

.alert-box p, .alert-box li {
  color: var(--color-text);
  font-size: var(--text-sm);
}

.alert-box cite {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  display: block;
  margin-top: 12px;
}

/* ---- Government Notice ---- */
.govt-notice {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
  padding: 32px;
  border-radius: var(--radius);
}

.govt-notice__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

/* ---- Seal ---- */
.seal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal img, .seal svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* ---- Pricing Card ---- */
.pricing-card {
  background-color: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card__header {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 32px 28px 24px;
  text-align: center;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.pricing-card__price-sub {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark);
  margin-top: 4px;
  opacity: 0.8;
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: -2px;
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius) 0 0 var(--radius);
}

.pricing-card__body {
  padding: 24px 28px;
  flex: 1;
}

.pricing-card__features {
  margin-bottom: 24px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.pricing-card__feature:last-child { border-bottom: none; }

.pricing-card__feature-icon {
  color: var(--color-compliant);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__footer {
  padding: 0 28px 28px;
  text-align: center;
}

/* ---- FAQ Accordion ---- */
.faq-list { margin-top: 32px; }

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2b4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 0 20px;
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
}

.faq-item__body p + p { margin-top: 12px; }

/* ---- Trust Bar ---- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  padding: 20px 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-on-dark);
  opacity: 0.85;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ---- Countdown Timer ---- */
.countdown {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown__value {
  font-family: var(--font-mono);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.countdown__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  opacity: 0.7;
  margin-top: 6px;
}

.countdown__sep {
  font-family: var(--font-mono);
  font-size: var(--text-4xl);
  color: var(--color-accent);
  opacity: 0.4;
  padding-bottom: 8px;
  line-height: 1;
}

/* ---- Checklist ---- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-base);
}

.checklist__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist__icon--fail { color: var(--color-danger); }
.checklist__icon--pass { color: var(--color-compliant); }

/* ---- Problem Cards ---- */
.problem-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-danger);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.problem-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-danger);
  margin-bottom: 16px;
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.problem-card__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ---- Gap Column Cards ---- */
.gap-card {
  text-align: center;
  padding: 24px 16px;
}

.gap-card__stat {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.gap-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.gap-card__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

/* ---- Process Steps ---- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}

@media (min-width: 1024px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -12px;
    width: 24px;
    height: 2px;
    background-color: var(--color-accent);
    opacity: 0.5;
  }
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.process-step__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ---- Risk Table ---- */
.risk-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: var(--text-sm);
}

.risk-table th {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border: none;
}

.risk-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.risk-table tr:nth-child(even) td {
  background-color: var(--color-bg-alt);
}

.risk-table .risk-value {
  font-weight: 700;
  color: var(--color-danger);
  font-family: var(--font-heading);
}

.risk-table .contract-value {
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- Section Headings ---- */
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .section-heading { font-size: var(--text-4xl); }
}

.section-heading--on-dark {
  color: #fff;
}

.section-subheading {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.section-subheading--on-dark {
  color: rgba(240,240,240,0.8);
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.nav__logo span {
  color: var(--color-accent);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
}

.nav__links a {
  color: rgba(240,240,240,0.8);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: #fff;
}

.nav__cta {
  display: none;
}

@media (min-width: 640px) {
  .nav__cta { display: inline-block; }
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav__hamburger { display: none; }
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--color-primary);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.nav__mobile-menu a {
  color: rgba(240,240,240,0.9);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.nav__mobile-menu a:last-child {
  border-bottom: none;
}

.nav__mobile-menu a:hover {
  color: #fff;
}

.nav__mobile-menu .btn {
  margin-top: 16px;
  text-align: center;
}

/* ---- Hero Section ---- */
.hero {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding-block: 72px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding-block: 100px; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.7) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  background-color: rgba(197,164,78,0.12);
  border: 1px solid rgba(197,164,78,0.3);
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__subhead {
  font-size: var(--text-lg);
  color: rgba(240,240,240,0.85);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__trust-label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.5);
  margin-bottom: 16px;
}

/* ---- Problem Section ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Solution Section ---- */
.solution-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .solution-content { grid-template-columns: 1fr auto; }
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-section__subtitle {
  font-size: var(--text-lg);
  color: rgba(240,240,240,0.8);
  margin-bottom: 32px;
}

.cta-section__contact {
  margin-top: 28px;
  font-size: var(--text-sm);
  color: rgba(240,240,240,0.6);
}

.cta-section__contact a {
  color: var(--color-accent);
  text-decoration: none;
}

.cta-section__contact a:hover {
  text-decoration: underline;
}

/* ---- Footer ---- */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(240,240,240,0.7);
  padding-block: 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  margin-bottom: 4px;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(240,240,240,0.5);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  color: rgba(240,240,240,0.6);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  font-size: var(--text-sm);
}

.footer__contact a {
  color: var(--color-accent);
  text-decoration: none;
}

.footer__disclaimer {
  background-color: rgba(0,0,0,0.2);
  padding: 16px 24px;
  margin-top: 24px;
  font-size: var(--text-xs);
  color: rgba(240,240,240,0.4);
  text-align: center;
  line-height: 1.5;
}

/* ---- Comparison Callout ---- */
.comparison-callout {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  margin-top: 32px;
}

.comparison-callout__text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.3;
}

.comparison-callout__text .highlight {
  color: var(--color-accent);
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-danger  { color: var(--color-danger); }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ---- Legal Page ---- */
.legal-page {
  max-width: 760px;
  margin-inline: auto;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.legal-page .effective-date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal-page p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.legal-page ul li { margin-bottom: 8px; line-height: 1.6; }

/* ---- Print Styles ---- */
@media print {
  .nav, .hero__ctas, .btn, footer, .countdown, .cta-section { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { color: #000; background: #fff; padding-block: 20px; }
  .hero h1 { color: #000; }
  .section--dark { background: #fff; color: #000; }
}
