:root {
  --slate: #1a2744;
  --slate-light: #2d3a56;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --bg: #faf9f6;
  --bg-dark: #f0ede6;
  --text: #1a2744;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(26,39,68,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--slate);
  font-weight: 400;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 72px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--slate);
  margin-bottom: 24px;
}
.hero-body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--slate);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 140px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,39,68,0.15);
}

/* Chat window */
.chat-window {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 40px rgba(26,39,68,0.1), 0 1px 4px rgba(26,39,68,0.06);
  overflow: hidden;
  border: 1px solid rgba(26,39,68,0.06);
}
.chat-header {
  background: var(--slate);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}
.chat-status {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}
.chat-bubble {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}
.chat-bubble.bot {
  background: var(--bg);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--slate);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-lawyer-card {
  margin: 8px 0 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--bg) 0%, #fff9ed 100%);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lawyer-avatar {
  width: 40px;
  height: 40px;
  background: var(--slate);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.lawyer-info { flex: 1; }
.lawyer-name { font-weight: 600; font-size: 14px; color: var(--slate); }
.lawyer-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.lawyer-rating { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.lawyer-action { text-align: right; }
.lawyer-price { font-weight: 700; font-size: 15px; color: var(--slate); }
.lawyer-avail { font-size: 11px; color: #10b981; font-weight: 500; margin-top: 2px; }

/* Section commons */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: 48px;
}
.section-headline em {
  font-style: italic;
  color: var(--amber);
}

/* How it works */
.howitworks {
  background: var(--white);
  padding: 80px 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(26,39,68,0.06);
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(26,39,68,0.1);
  margin-bottom: 20px;
  line-height: 1;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Differentiators */
.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.diff-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 20px;
}
.diff-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}
.diff-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  background: var(--slate);
  padding: 80px 48px;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 28px;
  line-height: 1.4;
  font-style: italic;
}
.manifesto-attribution {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 80px 48px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(26,39,68,0.08);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-links {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 60px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 36px; }
  .steps-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; gap: 48px; }
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .howitworks, .closing, .manifesto { padding: 60px 24px; }
  .differentiators { padding: 60px 24px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .hero-headline { font-size: 30px; }
  .section-headline { font-size: 26px; }
}