/* PROCEDURES PAGE */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.proc-card { background: #fff; border: 1px solid var(--gray-border); border-radius: 6px; padding: 24px 20px; transition: box-shadow 0.2s; }
.proc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.proc-icon { width: 44px; height: 44px; background: rgba(192,0,0,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.proc-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.proc-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.proc-desc { font-size: 11px; color: var(--gray-text); line-height: 1.7; margin-bottom: 14px; }
.proc-link { display: inline-flex; align-items: center; color: var(--red); font-size: 12px; font-weight: 700; }
.proc-link::after { content: ' →'; }

/* FLOW */
.flow-list { display: flex; flex-direction: column; gap: 16px; }
.flow-item { display: flex; gap: 20px; align-items: flex-start; }
.flow-num { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-body { flex: 1; padding-top: 6px; }
.flow-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.flow-desc { font-size: 12px; color: var(--gray-text); line-height: 1.7; }

/* DOWNLOADS */
.dl-grid { display: flex; flex-direction: column; gap: 12px; }
.dl-card { background: #fff; border: 1px solid var(--gray-border); border-radius: 6px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dl-card-left { display: flex; align-items: center; gap: 14px; }
.dl-icon { width: 38px; height: 38px; background: rgba(192,0,0,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dl-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; }
.dl-name { font-size: 13px; font-weight: 700; }
.dl-format { font-size: 11px; color: var(--gray-text); margin-top: 2px; }
.dl-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; padding: 8px 16px; border-radius: 3px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.dl-btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }
.dl-btn:hover { background: var(--red-dark); }

/* FEES */
.fee-note { font-size: 12px; color: var(--gray-text); margin-bottom: 16px; line-height: 1.7; padding: 12px 16px; background: #fffbe6; border-left: 3px solid #e6b800; border-radius: 2px; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { padding: 10px 16px; border: 1px solid var(--gray-border); font-size: 13px; }
.fee-table th { background: var(--gray-bg); font-weight: 700; text-align: left; }
.fee-table tr:nth-child(even) td { background: #fafafa; }

@media (max-width: 1024px) {
  .proc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .page-header { padding: 28px 16px 22px; }
  .proc-grid { grid-template-columns: 1fr; }
  .dl-card { flex-direction: column; align-items: flex-start; }
}
