:root {
  --bg: #0f1419;
  --surface: #151a21;
  --surface2: #1c242e;
  --fg: #f0ece3;
  --fg-muted: #8b95a1;
  --accent: #e8a020;
  --accent-dim: #c4851a;
  --border: #252d38;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* STATS */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTIONS */
.features, .workflow, .knowledge {
  padding: 96px 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.2;
}

/* FEATURES */
.features-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* WORKFLOW */
.workflow {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workflow-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.workflow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.4;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* KNOWLEDGE */
.knowledge-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.knowledge-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.knowledge-callout {
  background: var(--surface);
  border: 1px solid var(--accent-dim);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 60px;
}
.callout-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.callout-sub {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-desc {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 360px;
  text-align: right;
  line-height: 1.5;
}

/* ============================================================
   LIVE DEMO SECTION
   ============================================================ */
.demo-section {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.demo-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.demo-header {
  max-width: 720px;
  margin-bottom: 56px;
}
.demo-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.demo-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}
.demo-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.ai-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--accent);
  line-height: 1.5;
  max-width: 640px;
}
.ai-badge svg { flex-shrink: 0; margin-top: 2px; }

/* Stage wrappers */
.demo-stage {
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.stage-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.stage-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232,160,32,0.1);
  padding: 2px 8px;
  border-radius: 3px;
}
.stage-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

/* Attorney portal */
.attorney-portal {
  padding: 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.portal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus { border-color: var(--accent); }
.optional { font-weight: 400; color: var(--fg-muted); text-transform: none; letter-spacing: 0; }

/* Client card */
.client-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.client-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.client-details {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.client-row {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.client-row strong { color: var(--fg); }

/* Checklist */
.checklist-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.checklist-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 4px;
}
.check { color: var(--accent); font-weight: 600; }

/* Generate button */
.generate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0f1419;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}
.generate-btn:hover:not(:disabled) { background: var(--accent-dim); transform: translateY(-1px); }
.generate-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(15,20,25,0.3);
  border-top-color: #0f1419;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Document cards grid */
.drafting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  padding: 0;
}
.doc-card {
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.doc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.doc-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.doc-icon { font-size: 16px; }
.doc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fg-muted);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}
.status-dot.drafting {
  background: var(--accent);
  animation: pulse 1.2s ease-in-out infinite;
}
.status-dot.done { background: #22c55e; animation: none; }
.status-dot.error { background: #ef4444; animation: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Progress bar */
.progress-bar {
  height: 3px;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Document preview (live typing) */
.doc-preview {
  min-height: 120px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-family: 'Courier New', monospace;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  white-space: pre-wrap;
  word-break: break-word;
}
.preview-placeholder {
  font-style: italic;
  color: var(--fg-muted);
  opacity: 0.5;
}
.error-msg { color: #ef4444; }

/* Full document (expanded) */
.doc-full {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Courier New', monospace;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
  max-height: 500px;
  overflow-y: auto;
}

/* Doc actions */
.doc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-expand {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.btn-expand:hover { color: var(--fg); border-color: var(--fg-muted); }
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232,160,32,0.07);
  border: 1px solid rgba(232,160,32,0.25);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-pdf:hover { background: rgba(232,160,32,0.14); }

/* Clause feedback */
.clause-feedback {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.feedback-prompt {
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.feedback-btns {
  display: flex;
  gap: 6px;
}
.thumb-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.thumb-btn:hover { border-color: var(--fg-muted); color: var(--fg); }
.thumb-btn.active.up { background: rgba(34,197,94,0.1); border-color: #22c55e; color: #22c55e; }
.thumb-btn.active.down { background: rgba(239,68,68,0.1); border-color: #ef4444; color: #ef4444; }

/* Review panel */
.review-panel {
  padding: 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.review-banner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: #fca5a5;
  line-height: 1.5;
}
.review-banner svg { flex-shrink: 0; margin-top: 1px; }
.review-summary h3,
.attorney-notes h3,
.review-cta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review-item {
  display: flex;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
}
.review-doc-icon { font-size: 20px; flex-shrink: 0; }
.review-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.review-item p { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }
.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.flag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.flag.required {
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.3);
}
.flag.optional {
  background: rgba(232,160,32,0.1);
  color: var(--accent);
  border: 1px solid rgba(232,160,32,0.2);
}
.review-ai-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.review-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.review-cta p { font-size: 15px; color: var(--fg-muted); max-width: 480px; line-height: 1.6; }
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0f1419;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: 4px;
}
.cta-primary:hover { background: var(--accent-dim); }
.cta-sub { font-size: 12px !important; color: var(--fg-muted); }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.pricing-header {
  max-width: 600px;
  margin-bottom: 48px;
}
.pricing-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pricing-subtitle {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Comparison callout */
.pricing-compare {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 40px;
  width: fit-content;
}
.compare-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 600;
}
.compare-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: -0.02em;
}
.compare-price.strikethrough { text-decoration: line-through; opacity: 0.5; }
.compare-price .per {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
}
.compare-row.highlight .compare-label { color: var(--accent); }
.compare-row.highlight .compare-price { color: var(--accent); }
.compare-arrow {
  font-size: 20px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* Tier cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.pricing-card.featured {
  background: var(--surface2);
}
.tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #0f1419;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}
.tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  padding-top: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card.featured .tier-price { color: var(--accent); }
.tier-period {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.tier-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 8px 0;
  flex: 1;
}
.tier-features li {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.tier-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
  margin-top: auto;
}
.tier-cta.primary {
  background: var(--accent);
  color: #0f1419;
}
.tier-cta.primary:hover { background: var(--accent-dim); }
.tier-cta.secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
}
.tier-cta.secondary:hover { border-color: var(--fg-muted); }
.tier-note {
  font-size: 11px;
  color: var(--accent);
  text-align: center;
  opacity: 0.8;
}
.pricing-footnote {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* Utility */
.hidden { display: none !important; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    flex-direction: column;
  }
  .step-arrow {
    padding: 16px 0;
    justify-content: center;
    transform: rotate(90deg);
  }
  .knowledge-inner {
    grid-template-columns: 1fr;
  }
  .knowledge-callout {
    margin-top: 0;
  }
  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-note {
    text-align: left;
  }
  /* Demo responsive */
  .form-row {
    grid-template-columns: 1fr;
  }
  .drafting-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  /* Pricing responsive */
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-compare {
    flex-wrap: wrap;
    gap: 8px;
  }
}