/* ═══════════════════════════════════════════════════════════════
   QUILLINOX — Design System & Marketing Site Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy: #1B3A6B;
  --navy-hover: #24508A;
  --navy-dark: #132B50;
  --navy-light: #2D5FA0;

  --red: #C0392B;
  --orange: #E67E22;
  --amber: #D4A017;
  --green: #27AE60;

  --gray-50: #F8F9FA;
  --gray-100: #F0F2F5;
  --gray-200: #E0E3E8;
  --gray-300: #C5CAD2;
  --gray-500: #6C757D;
  --gray-700: #3D4551;
  --gray-900: #1A1D23;

  --white: #FFFFFF;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.16);

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Consolas", monospace;

  --container-max: 1200px;
  --header-height: 72px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-hover); text-decoration: underline; }
ul, ol { list-style: none; }

/* ── Focus ──────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--navy-light);
  outline-offset: 2px;
}

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-light);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  min-height: 48px;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
  min-height: 56px;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
.card-elevated {
  box-shadow: var(--shadow-lg);
}
.card-elevated:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.card-icon svg { width: 24px; height: 24px; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: #E8F8EF; color: #1E8449; }
.badge-orange { background: #FEF3E2; color: #D4790E; }
.badge-red { background: #FDECEA; color: var(--red); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo:hover { color: var(--white); text-decoration: none; }
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}
.nav-links .btn {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  min-height: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-links .btn { margin-left: 0; margin-top: 8px; width: 100%; }
  .nav-open .nav-links { display: flex; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { margin-top: 12px; font-size: 0.875rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.section-gray { background: var(--gray-50); }
.section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.85); }

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--gray-500); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 800px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.25rem; max-width: 640px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-page {
  padding: 64px 0;
  background: var(--gray-50);
  text-align: center;
}
.hero-page h1 { margin-bottom: 16px; }
.hero-page p { font-size: 1.125rem; color: var(--gray-500); max-width: 640px; margin: 0 auto; }

/* ── Grid layouts ───────────────────────────────────────────── */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 64px 0 48px; }
  .hero p { font-size: 1.0625rem; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
}

/* ── Countdown ──────────────────────────────────────────────── */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 24px;
  color: var(--white);
}
.countdown-number {
  font-size: 1.125rem;
  font-weight: 800;
  color: #FFD166;
}
.countdown-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD166;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Pipeline ───────────────────────────────────────────────── */
.pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 16px 0;
}
.pipeline-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.pipeline-step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -2px;
  width: 40%;
  height: 2px;
  background: var(--gray-300);
}
.pipeline-step:last-child::after { display: none; }
.pipeline-step::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -2px;
  width: 40%;
  height: 2px;
  background: var(--gray-300);
}
.pipeline-step:first-child::before { display: none; }

.pipeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.pipeline-icon svg { width: 24px; height: 24px; }
.pipeline-step h4 { font-size: 1rem; margin-bottom: 8px; }
.pipeline-step p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.5; }

@media (max-width: 768px) {
  .pipeline { flex-direction: column; align-items: stretch; gap: 24px; }
  .pipeline-step { display: flex; align-items: flex-start; text-align: left; gap: 16px; min-width: auto; padding: 0; }
  .pipeline-step::after, .pipeline-step::before { display: none; }
  .pipeline-icon { margin: 0; flex-shrink: 0; }
  .pipeline-step-text { flex: 1; }
}

/* ── Feature cards ──────────────────────────────────────────── */
.feature-card { padding: 36px 32px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-card p { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 16px; }
.feature-card ul { padding-left: 0; }
.feature-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.feature-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-card {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--navy);
  transform: scale(1.03);
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.pricing-card .price .price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}
.pricing-card .divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}
.pricing-card ul {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .pricing-card.featured { transform: none; }
}

/* ── FAQ / Accordion ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  padding: 20px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item .faq-answer {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--red);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
  outline: none;
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--red);
}
.form-error {
  font-size: 0.8125rem;
  color: var(--red);
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }

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

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.125rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Standards bar ──────────────────────────────────────────── */
.standards-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.standard-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
}
.standard-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

/* ── Two-column layout ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Stats ──────────────────────────────────────────────────── */
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ── Specs table ────────────────────────────────────────────── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table th,
.specs-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gray-200);
}
.specs-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.specs-table th:first-child { border-radius: var(--radius) 0 0 0; }
.specs-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.specs-table tr:hover td { background: var(--gray-50); }

/* ── Values ─────────────────────────────────────────────────── */
.value-card {
  text-align: center;
  padding: 40px 32px;
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--gray-500); font-size: 0.9375rem; }

/* ── Demo page ──────────────────────────────────────────────── */
.demo-benefits {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px;
}
.demo-benefits h3 { margin-bottom: 20px; }
.demo-benefits ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.demo-benefits ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

/* ── Utilities ──────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ── Compliance page ───────────────────────────────────────── */
.toc-list {
  list-style: decimal;
  padding-left: 24px;
  margin-top: 16px;
}
.toc-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  font-weight: 500;
  font-size: 1rem;
}

.compliance-list {
  padding-left: 0;
  margin: 16px 0;
}
.compliance-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.compliance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}
.compliance-list.compact li {
  padding: 4px 0 4px 20px;
  font-size: 0.875rem;
}
.compliance-list.compact li::before {
  top: 11px;
  width: 6px;
  height: 6px;
}

.roadmap {
  margin-top: 24px;
}
.roadmap-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.roadmap-step:last-child { border-bottom: none; }
.roadmap-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.roadmap-content h3 { font-size: 1.125rem; margin-bottom: 8px; }
.roadmap-content p { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 0; }
