.edc-service-hero {
  position: relative;
  /* Matches the homepage hero baseline so every service page opens with
     the same top rhythm. Editorial breathing room, not section-level. */
  padding: 56px var(--edc-space-gutter) 64px;
  background: var(--edc-warm-white);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .edc-service-hero {
    padding-left: var(--edc-section-h);
    padding-right: var(--edc-section-h);
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

/* Radial solar glow — anchors the composition without heavy shadow */
.edc-service-hero__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  border-radius: var(--edc-radius-full);
  background: radial-gradient(circle at center, rgba(242, 184, 27, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.edc-service-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--edc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  /* Top-align so the eyebrow chip lines up with the form card's top
     edge — matches the homepage hero pattern. */
  align-items: start;
}
@media (min-width: 1024px) {
  .edc-service-hero__inner { grid-template-columns: 1fr 1fr; }
}

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

.edc-service-hero__title {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: var(--edc-track-headline);
  color: var(--edc-obsidian);
  margin: 0;
}
.edc-service-hero__title-emph { color: var(--edc-solar-gold); }

.edc-service-hero__body {
  font-family: var(--edc-font-body);
  font-size: var(--edc-fs-body-lead);
  line-height: 1.75;
  color: var(--edc-slate);
  max-width: 560px;
  margin: 0;
}

.edc-service-hero__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .edc-service-hero__pillars { grid-template-columns: 1fr 1fr; }
}

.edc-service-hero__pillar { display: flex; flex-direction: column; gap: 8px; }
.edc-service-hero__pillar-num {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--edc-solar-gold);
  line-height: 1;
}
.edc-service-hero__pillar-title {
  font-family: var(--edc-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--edc-obsidian);
  margin: 0;
}
.edc-service-hero__pillar-body {
  font-family: var(--edc-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--edc-slate);
  margin: 0;
}

/* ── Right column: form card ── */
.edc-service-hero__form-wrap { position: relative; }
.edc-service-hero__form-card {
  position: relative;
  background: var(--edc-warm-white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--edc-border);
  box-shadow: var(--edc-shadow-xl);
  overflow: hidden;
}
.edc-service-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-service-hero__form-title {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--edc-obsidian);
  text-align: center;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.edc-service-hero__form-subtitle {
  font-family: var(--edc-font-body);
  font-size: 14px;
  color: var(--edc-slate);
  text-align: center;
  margin: 0 0 32px 0;
  line-height: 1.75;
}
.edc-service-hero__trust {
  list-style: none;
  padding: 8px 0 0 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.edc-service-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-service-hero__trust .material-symbols-outlined {
  color: var(--edc-solar-gold);
  font-size: 18px !important;
  font-weight: 700;
}
.edc-service-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: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--edc-shadow-md);
  transition: filter var(--edc-dur-quick), transform var(--edc-dur-quick);
}
.edc-service-hero__submit:hover  { filter: brightness(1.06); transform: translateY(-2px); }
.edc-service-hero__submit:active { transform: scale(0.98); }
