.need-section { padding-top: 90px; padding-bottom: 90px; }
.need-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.need-grid a { min-height: 260px; padding: 26px; color: var(--ink); text-decoration: none; background: #fff; border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.need-grid a:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 18px 40px rgba(24, 49, 43, .08); }
.need-grid span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.need-grid h3 { min-height: 58px; margin: 28px 0 12px; font-family: var(--serif); font-size: 24px; line-height: 1.2; }
.need-grid p { min-height: 68px; margin: 0 0 24px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.need-grid strong { color: var(--green); font-size: 12px; }
.need-grid strong::after { content: " →"; }

.method-table { width: 100%; margin: 18px 0; border-collapse: collapse; background: #fff; }
.method-table th, .method-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; line-height: 1.65; }
.method-table th { color: #fff; background: var(--green); }
.method-callout { margin: 22px 0; padding: 18px 20px; background: var(--cream); border-left: 4px solid var(--orange); }
.review-form { display: grid; gap: 16px; margin-top: 28px; padding: 26px; background: #fff; border: 1px solid var(--line); }
.review-form label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 700; }
.review-form input, .review-form select, .review-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid #c9d0cc; border-radius: 0; font: inherit; font-weight: 400; }
.review-form textarea { min-height: 150px; resize: vertical; }
.form-message.success { color: #146b45; }
.form-message.error { color: #a83b2b; }

@media (max-width: 980px) {
  .need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .need-section { padding-top: 64px; padding-bottom: 64px; }
  .need-grid { grid-template-columns: 1fr; }
  .need-grid a { min-height: auto; }
  .need-grid h3, .need-grid p { min-height: auto; }
  .method-table { display: block; overflow-x: auto; }
}
