/* Onboarding welcome page */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8f6f2;
  color: #1a1a1a;
  margin: 0;
  padding: 48px 20px 80px;
  min-height: 100vh;
}

.container {
  max-width: 680px;
  margin: 0 auto;
}

/* Hero */
.hero {
  margin-bottom: 56px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #111;
  line-height: 1.2;
}

.hero .subheading {
  font-size: 1.125rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 2px;
}

.step-content {
  flex: 1;
}

.step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px;
}

.step-body {
  font-size: 0.9375rem;
  color: #444;
  margin: 0;
  line-height: 1.65;
}

.step-body ul {
  margin: 6px 0 0;
  padding-left: 20px;
}

.step-body li {
  margin-bottom: 4px;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid #e8e4dc;
  margin: 0 0 56px;
}

/* Sections below divider */
.section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px;
}

.deliverables-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverable {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: #222;
  font-weight: 500;
}

.deliverable-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f0f7f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expectations-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expectation {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.6;
}

.expectation-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA */
.cta-wrap {
  margin-top: 48px;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-home:hover {
  background: #333;
}

.btn-home svg {
  flex-shrink: 0;
  transition: transform 0.15s;
}

.btn-home:hover svg {
  transform: translateX(3px);
}

/* Mobile */
@media (max-width: 480px) {
  body { padding: 32px 16px 64px; }
  .hero h1 { font-size: 1.875rem; }
  .step { gap: 14px; }
}