/* =========================================================================
   REQUEST-A-PROPOSAL.CSS — Request a Proposal page sections only
   (Hero uses shared page-hero from component.css.)
   ========================================================================= */

/* ---- 02 Process Steps ------------------------------------------------- */
.process-steps {
  background: var(--surface-light);
  padding: var(--section-pad) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.step-title {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- 03 + 04 Proposal Form + Trust Sidebar ---------------------------- */
.proposal-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.proposal-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: start;
}

.proposal-main .section-title {
  margin-bottom: 20px;
}

/* Form embed placeholder card */
.form-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(40px, 6vw, 64px) 32px;
  background: var(--surface-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.form-embed-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.5rem;
}

.form-embed-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.form-embed-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* Trust sidebar */
.trust-sidebar {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 30px;
}

.sidebar-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 22px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.sidebar-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--gold);
  font-size: 1rem;
}

.sidebar-item-title {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.sidebar-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.sidebar-item a {
  color: var(--gold);
  font-family: var(--font-mono);
}

.sidebar-item a:hover {
  color: var(--gold-light);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .proposal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
