/* ─── CONTACT FORM CARD ─── */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-1); }
.form-head { padding: 22px 28px; border-bottom: 1px solid var(--bg-2); background: var(--bg); }
.form-head h3 { font-size: 17px; font-weight: 700; }
.form-body { padding: 26px 28px 28px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: var(--t);
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-md);
}
.fg textarea { resize: vertical; min-height: 110px; line-height: 1.65; }
.fgrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-ok {
  display: none;
  background: var(--teal-lt);
  color: var(--teal-xd);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color .22s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 12px;
  transition: background .18s;
}
.faq-item.open .faq-q { background: var(--teal-lt); }
.faq-arrow { font-size: 12px; color: var(--teal); transition: transform .28s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .36s ease; }
.faq-item.open .faq-ans { max-height: 600px; }
.faq-ans-inner { padding: 4px 24px 22px; font-size: 14.5px; color: var(--body); line-height: 1.82; }

/* ─── PROCESS STEPS ─── */
.steps-row { display: flex; gap: 0; position: relative; margin: 40px 0; }
.steps-row::before { content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border-2); z-index: 0; }
.step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-n {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: 'Playfair Display', sans-serif;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 5px var(--white);
}
.step h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 140px; margin: 0 auto; }

/* ─── NEWSLETTER BAND ─── */
.nl-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 64px 0;
  color: #fff;
}
.nl-band h2 { font-family: 'Playfair Display', sans-serif; font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; margin-bottom: 10px; }
.nl-band p  { font-size: 15.5px; color: rgba(255,255,255,.7); margin-bottom: 28px; line-height: 1.7; }
.nl-form { display: flex; gap: 10px; max-width: 480px; }
.nl-form input {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  border: none;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.nl-form button {
  height: 50px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--t);
  box-shadow: var(--sh-teal);
}
.nl-form button:hover { background: var(--teal-dk); transform: translateY(-2px); }

@media (max-width: 960px) {
  .steps-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .steps-row::before { display: none; }
  .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-n { margin: 0; flex-shrink: 0; }
  .step p { max-width: none; }
  .nl-band .wrap > div { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .fgrow { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .faq-q { font-size: 14px; padding: 16px 18px; }
}
