.edc-hr-hero {
  padding: 56px var(--edc-space-gutter) 64px;
  background: var(--edc-warm-white);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .edc-hr-hero { padding-left: 80px; padding-right: 80px; padding-top: 64px; padding-bottom: 80px; }
}

.edc-hr-hero__inner {
  max-width: var(--edc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .edc-hr-hero__inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .edc-hr-hero__copy      { grid-column: span 7; }
  .edc-hr-hero__form-wrap { grid-column: 8 / span 5; }
}

/* ── Copy column ── */
.edc-hr-hero__copy { display: flex; flex-direction: column; gap: 28px; }

.edc-hr-hero__title {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--edc-obsidian);
  margin: 0;
}
/* <em> marks Solar Gold accent runs (headline supports multiple accents). */
.edc-hr-hero__title em {
  font-style: normal;
  color: var(--edc-solar-gold);
}

.edc-hr-hero__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}
.edc-hr-hero__body p {
  font-family: var(--edc-font-body);
  font-size: var(--edc-fs-body-lead);
  line-height: 1.75;
  color: var(--edc-slate);
  margin: 0;
}

/* ── Right column — form card ── */
.edc-hr-hero__form-wrap { position: relative; }
.edc-hr-hero__form-card {
  position: relative;
  overflow: hidden;
  background: var(--edc-warm-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--edc-border);
  box-shadow: var(--edc-shadow-xl);
}
.edc-hr-hero__ribbon {
  position: absolute; top: 0; right: 0;
  background: var(--edc-solar-gold);
  color: var(--edc-obsidian);
  padding: 6px 16px;
  border-bottom-left-radius: 12px;
  font-family: var(--edc-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 1;
}
.edc-hr-hero__form-title {
  font-family: var(--edc-font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--edc-obsidian);
  text-align: center;
  margin: 0 0 8px 0;
  line-height: 1.25;
}
.edc-hr-hero__form-subtitle {
  font-family: var(--edc-font-body);
  font-size: 14px;
  color: var(--edc-slate);
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.6;
}
.edc-hr-hero__trust {
  list-style: none;
  padding: 8px 0 0 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.edc-hr-hero__trust li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--edc-font-body);
  font-size: 14px;
  color: rgba(90, 89, 86, 0.85);
}
.edc-hr-hero__trust .material-symbols-outlined { color: var(--edc-solar-gold); font-size: 18px !important; font-weight: 700; }
.edc-hr-hero__submit {
  width: 100%;
  padding: 16px 24px;
  margin-top: 16px;
  border: 0;
  border-radius: var(--edc-radius-full);
  background: var(--edc-solar-gold);
  color: var(--edc-obsidian);
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--edc-shadow-md);
  transition: filter var(--edc-dur-quick), transform var(--edc-dur-quick);
}
.edc-hr-hero__submit:hover  { filter: brightness(1.06); transform: translateY(-2px); }
.edc-hr-hero__submit:active { transform: scale(0.98); }
