/* ============================================================
   Work With HVB (/get-involved/) page styles
   Premium lane-card grid + process band + final CTA.
   Canonical tokens only — no :root overrides, no global body.
   ============================================================ */

/* -------- Section wrappers -------- */

.work-lanes {
  padding-block: clamp(48px, 6vw, 88px);
  background: var(--hvb-sand);
}

.work-lanes + .expectations-section {
  padding-block: clamp(48px, 6vw, 80px);
  background: #fff;
}

.final-cta {
  padding-block: clamp(48px, 6vw, 80px);
  background: var(--hvb-sand);
}

.work-lanes .section-head,
.expectations-section .section-head,
.final-cta .section-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.work-lanes .section-head .kicker,
.expectations-section .section-head .kicker,
.final-cta .section-head .kicker {
  color: var(--hvb-teal);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: inline-block;
  background: rgba(31, 111, 98, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

.work-lanes h2,
.expectations-section h2,
.final-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--hvb-green);
}

.work-lanes .subhead,
.expectations-section .subhead {
  margin: 0;
  color: var(--hvb-slate);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 62ch;
}

/* -------- Lane grid (2 cols) -------- */

.lane-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 780px) {
  .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* -------- Lane card -------- */

.lane-card {
  background: #fff;
  border: 1px solid rgba(14, 59, 46, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-level-1);
  padding: clamp(22px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.lane-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--hvb-green) 0%, var(--hvb-teal) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lane-card:hover,
.lane-card:focus-within {
  box-shadow: var(--shadow-level-2);
  transform: translateY(-2px);
}

.lane-card:hover::before,
.lane-card:focus-within::before {
  opacity: 0.9;
}

/* Icon badge — same pattern as site-map section icons. Uses
   background-image data URIs with stroke='%231f6f62' baked in, so a
   single pseudo-element renders both the tinted backdrop and the icon. */

.lane-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: rgba(31, 111, 98, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.lane-card[data-lane-icon="advisory"] .lane-card__icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='7' width='20' height='14' rx='2' ry='2'/><path d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/></svg>");
}

.lane-card[data-lane-icon="speaking"] .lane-card__icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3z'/><path d='M19 10v2a7 7 0 0 1-14 0v-2'/><line x1='12' y1='19' x2='12' y2='22'/></svg>");
}

.lane-card[data-lane-icon="partner"] .lane-card__icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M23 21v-2a4 4 0 0 0-3-3.87'/><path d='M16 3.13a4 4 0 0 1 0 7.75'/></svg>");
}

.lane-card[data-lane-icon="pilot"] .lane-card__icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z'/><line x1='4' y1='22' x2='4' y2='15'/></svg>");
}

.lane-card[data-lane-icon="book"] .lane-card__icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/><polyline points='9 16 11 18 15 14'/></svg>");
}

.lane-card[data-lane-icon="contact"] .lane-card__icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
}

.lane-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lane-card__eyebrow {
  margin: 0;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hvb-teal);
}

.lane-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--hvb-green);
}

.lane-card__body p {
  margin: 0;
  color: var(--hvb-slate);
  font-size: 15px;
  line-height: 1.55;
  max-width: 52ch;
}

.lane-card__body .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* -------- What to expect: 3-step process -------- */

.expectations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  counter-reset: expectation;
}

@media (min-width: 900px) {
  .expectations-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

.expectation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--hvb-mist);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 59, 46, 0.06);
}

.expectation__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(31, 111, 98, 0.15);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hvb-teal);
  font-variant-numeric: tabular-nums;
}

.expectation > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.expectation h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--hvb-green);
}

.expectation p {
  margin: 0;
  color: var(--hvb-slate);
  font-size: 14.5px;
  line-height: 1.55;
}

/* -------- Final CTA -------- */

.final-cta__panel {
  background: #fff;
  border: 1px solid rgba(14, 59, 46, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-level-2);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 880px) {
  .final-cta__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
  }
}

.final-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--hvb-green) 0%, var(--hvb-teal) 100%);
}

.final-cta__panel h2 {
  margin: 0 0 8px;
}

.final-cta__panel p {
  margin: 0;
  color: var(--hvb-slate);
  font-size: 16px;
  line-height: 1.55;
  max-width: 58ch;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
