/* ============================================================
   deliverables.css — deliverables grid and "you don't need" strip
   ============================================================ */

#what-you-get {
  border-top: 1px solid var(--border);
}

#what-you-get .section-label {
  margin-bottom: 16px;
}

#what-you-get h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
}

/* 3-column deliverables grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.deliverable {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: left;
  transition: border-color 0.2s;
}

.deliverable:hover {
  border-color: var(--border-accent);
}

/* Connected block corner radius — only outermost four cells */
.deliverable:nth-child(1) { border-radius: 16px 0 0 0; }
.deliverable:nth-child(3) { border-radius: 0 16px 0 0; }
.deliverable:nth-child(4) { border-radius: 0 0 0 16px; }
.deliverable:nth-child(6) { border-radius: 0 0 16px 0; }

.deliverable-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-muted-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-muted);
  margin-bottom: 16px;
}

.deliverable-icon svg {
  width: 20px;
  height: 20px;
}

.deliverable h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.deliverable p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* "You don't need" strip */
.dont-need {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.dont-need-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.dont-need-item {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: line-through;
}
