/* ── TOKENS ────────────────────────────────────── */
:root {
  --bg:          #f7f3ed;
  --coral:       #ff5656;
  --slate:       #455a7c;
  --slate-mid:   #6b7f9e;
  --slate-pale:  #e8ecf2;
  --coral-pale:  #fff0f0;
  --white:       #ffffff;
  --rule:        #e2dcd4;
  --ink:         #2a2a2a;
}

/* ── PAGE BASE ──────────────────────────────────── */
.hiw-page {
  background: var(--bg);
  color: var(--ink);
}

#loop,
#volunteers,
#organizations,
#donors,
#credits,
#trust,
#faq {
  scroll-margin-top: 72px;
}

/* ── HERO ───────────────────────────────────────── */
.hiw-hero {
  padding: 80px 56px 72px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
  border-bottom: 1px solid var(--rule);
}

.hiw-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}

.hiw-hero__h1 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--coral);
  margin-bottom: 20px;
}

.hiw-hero__h1 em {
  font-style: italic;
  color: var(--slate);
}

.hiw-hero__sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 460px;
}

.hiw-hero__find-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 14px;
}

.hiw-audience-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  transition: all 0.2s ease;
  max-width: 360px;
}

.hiw-audience-pill:hover {
  border-color: var(--coral);
  background: var(--coral-pale);
  transform: translateX(4px);
  color: var(--coral);
  text-decoration: none;
}

.hiw-audience-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hiw-audience-pill__arrow {
  margin-left: auto;
  color: var(--rule);
  font-size: 16px;
  transition: color 0.2s;
}

.hiw-audience-pill:hover .hiw-audience-pill__arrow {
  color: var(--coral);
}

.hiw-hero__svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  min-height: 400px;
  padding: 12px;
  background: white;
  border: 1px solid #e2dcd4;
  border-radius: 16px;
}

.hiw-hero__svg-wrap img {
  width: 100%;
  min-width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── JUMP NAV ───────────────────────────────────── */
.hiw-jump-nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0 56px;
  display: flex;
  overflow-x: auto;
  position: sticky;
  top: 96px;
  z-index: 90;
}

.hiw-jump-nav a {
  display: block;
  padding: 15px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.hiw-jump-nav a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
  text-decoration: none;
}

/* ── SHARED SECTION ─────────────────────────────── */
.hiw-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 56px;
  border-top: 1px solid var(--rule);
}

.hiw-section--white {
  background: var(--white);
  max-width: 100%;
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}

.hiw-section--white .hiw-section__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 56px;
}

.hiw-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}

.hiw-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--coral);
  margin-bottom: 16px;
  max-width: 620px;
}

.hiw-heading-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 16px;
}

.hiw-heading-with-icon .hiw-h2 {
  margin-bottom: 0;
}

.hiw-heading-with-icon--right {
  justify-content: space-between;
}

.hiw-heading-with-icon--right .hiw-h2 {
  flex: 1;
  max-width: none;
}

.hiw-heading-with-icon--right .hiw-heading-icon {
  margin-top: 2px;
}

.hiw-heading-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  margin-top: 4px;
}

.hiw-heading-icon--heart {
  width: 46px;
  height: 46px;
}

.hiw-heading-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hiw-heading-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.hiw-coins-icon {
  color: var(--coral);
  display: block;
  line-height: 1;
}

.hiw-coins-icon--step {
  font-size: 26px;
}

.hiw-coins-icon--heading {
  font-size: 28px;
}

.hiw-lead {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 52px;
}

/* ── PULLQUOTE ──────────────────────────────────── */
.hiw-pullquote {
  border-left: 3px solid var(--coral);
  padding: 4px 0 4px 26px;
  margin: 40px 0 0;
}

.hiw-pullquote p {
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.4;
}

/* ── 5-STEP LOOP ────────────────────────────────── */
.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}

.hiw-step {
  padding: 30px 22px;
  border-right: 1px solid var(--rule);
  position: relative;
  background: var(--white);
}

.hiw-step:last-child {
  border-right: none;
}

.hiw-step--final {
  background: var(--coral-pale);
}

.hiw-step__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.7;
  margin-bottom: 14px;
}

.hiw-step__icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.hiw-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw-step__desc {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.65;
}

.hiw-step__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  background: var(--coral-pale);
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.hiw-step__connector {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 10px;
  color: white;
  font-weight: 700;
}

/* ── AUDIENCE GRID ──────────────────────────────── */
.hiw-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── FEATURE CARD ───────────────────────────────── */
.hiw-feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}

.hiw-card-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--rule);
}

.hiw-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.hiw-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate);
}

.hiw-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 26px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}

.hiw-feature-item:last-child {
  border-bottom: none;
}

.hiw-feature-item:hover {
  background: var(--bg);
}

.hiw-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: white;
  font-weight: 700;
  background: var(--coral);
}

.hiw-feature-check--slate {
  background: var(--slate);
}

.hiw-feature-text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}

.hiw-card-footer {
  padding: 18px 26px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.hiw-card-note {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 0;
}

/* ── CTA BUTTONS ────────────────────────────────── */
.hiw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--coral);
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.hiw-btn:hover {
  background: #e04040;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 86, 86, 0.25);
  color: white;
  text-decoration: none;
}

.hiw-btn--slate {
  background: var(--slate);
}

.hiw-btn--slate:hover {
  background: #364a63;
  box-shadow: 0 8px 24px rgba(69, 90, 124, 0.25);
}

/* ── BC CALLOUT ─────────────────────────────────── */
.hiw-bc-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--coral-pale);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 28px;
  max-width: 420px;
  border: 1px solid rgba(255, 86, 86, 0.15);
}

.hiw-bc-callout__icon {
  font-size: 22px;
  flex-shrink: 0;
}

.hiw-bc-callout__text {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
}

.hiw-bc-callout__text strong {
  font-weight: 700;
  color: var(--coral);
  display: block;
  margin-bottom: 3px;
}

.hiw-bc-callout--green {
  --hiw-bc-callout-green-bg: #e1f5ee;
  --hiw-bc-callout-green-border: rgba(93, 202, 165, 0.35);

  background: var(--hiw-bc-callout-green-bg);
  border-color: var(--hiw-bc-callout-green-border);
}

.hiw-bc-callout--green .hiw-bc-callout__text {
  --hiw-bc-callout-green-text: #0f6e56;

  color: var(--hiw-bc-callout-green-text);
}

.hiw-bc-callout--green .hiw-bc-callout__text strong {
  --hiw-bc-callout-green-text-strong: #085041;

  color: var(--hiw-bc-callout-green-text-strong);
}

/* ── DONOR RECEIPT ──────────────────────────────── */
.hiw-receipt {
  background: var(--bg);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}

.hiw-receipt__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}

.hiw-receipt__row:last-child {
  border-bottom: none;
}

.hiw-receipt__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.hiw-receipt__val {
  font-weight: 600;
  color: var(--ink);
}

.hiw-receipt__val--funded {
  color: var(--coral);
  font-weight: 700;
}

.hiw-receipt__badge {
  padding: 4px 12px;
  background: var(--coral-pale);
  color: var(--coral);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.hiw-receipt__anon-note {
  font-size: 11px;
  color: var(--slate-mid);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}

/* ── DONOR TAGLINE ──────────────────────────────── */
.hiw-donor-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 8px;
  max-width: 580px;
}

/* ── DONOR IMPACT FLOW ──────────────────────────── */
.hiw-impact-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.hiw-impact-flow__step {
  flex: 1;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
}

.hiw-impact-flow__step--purple { background: #eeedfe; }
.hiw-impact-flow__step--green  { background: #e1f5ee; }
.hiw-impact-flow__step--coral  { background: var(--coral-pale); }
.hiw-impact-flow__step--gold   { background: #faeeda; }

.hiw-impact-flow__num {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.hiw-impact-flow__step--purple .hiw-impact-flow__num { color: #3c3489; }
.hiw-impact-flow__step--green  .hiw-impact-flow__num { color: #085041; }
.hiw-impact-flow__step--coral  .hiw-impact-flow__num { color: #712b13; }
.hiw-impact-flow__step--gold   .hiw-impact-flow__num { color: #633806; }

.hiw-impact-flow__label {
  font-size: 0.75rem;
  margin: 4px 0 0;
  line-height: 1.3;
}

.hiw-impact-flow__step--purple .hiw-impact-flow__label { color: #534ab7; }
.hiw-impact-flow__step--green  .hiw-impact-flow__label { color: #0f6e56; }
.hiw-impact-flow__step--coral  .hiw-impact-flow__label { color: #993c1d; }
.hiw-impact-flow__step--gold   .hiw-impact-flow__label { color: #854f0b; }

.hiw-impact-flow__arrow {
  color: var(--rule);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── IMPACT CREDITS ─────────────────────────────── */
.hiw-credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hiw-credits-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px;
}

.hiw-credits-card--muted {
  background: var(--bg);
}

.hiw-credits-card__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--coral);
}

.hiw-credits-card__title--muted {
  color: var(--slate-mid);
}

.hiw-credits-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  align-items: flex-start;
}

.hiw-credits-item:last-child {
  border-bottom: none;
}

.hiw-credits-item--muted {
  color: var(--slate-mid);
}

.hiw-credits-item__sym {
  flex-shrink: 0;
  font-size: 15px;
}

.hiw-credits-disclaimer {
  grid-column: 1 / -1;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 12px;
  color: var(--slate-mid);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── IC EARN GRID (volunteer/donor side-by-side) ── */
.hiw-credits-earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.hiw-credits-earn-card {
  border-radius: 14px;
  padding: 22px 26px;
}

.hiw-credits-earn-card--volunteer { background: #e1f5ee; }
.hiw-credits-earn-card--donor    { background: #eeedfe; }

.hiw-credits-earn-card__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.hiw-credits-earn-card--volunteer .hiw-credits-earn-card__title { color: #0f6e56; }
.hiw-credits-earn-card--donor    .hiw-credits-earn-card__title { color: #534ab7; }

.hiw-credits-earn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.hiw-credits-earn-item:last-child { margin-bottom: 0; }

.hiw-credits-earn-card--volunteer .hiw-credits-earn-item        { color: #085041; }
.hiw-credits-earn-card--volunteer .hiw-credits-earn-item strong { color: #04342c; }
.hiw-credits-earn-card--donor    .hiw-credits-earn-item         { color: #3c3489; }
.hiw-credits-earn-card--donor    .hiw-credits-earn-item strong  { color: #26215c; }

.hiw-credits-earn-item__icon {
  font-size: 15px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ── IC UNLOCK GRID ─────────────────────────────── */
.hiw-credits-unlock-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-mid);
  margin: 0 0 12px;
}

.hiw-credits-unlock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.hiw-credits-unlock-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.hiw-credits-unlock-item__icon {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.hiw-credits-unlock-item__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.hiw-credits-unlock-item__desc {
  font-size: 11px;
  color: var(--slate-mid);
  margin: 2px 0 0;
}

/* ── IC COMING SOON BANNER ──────────────────────── */
.hiw-credits-coming-soon {
  background: #faeeda;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 28px;
  border: 1px solid rgba(239, 159, 39, 0.2);
}

.hiw-credits-coming-soon__icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hiw-credits-coming-soon__title {
  font-size: 14px;
  font-weight: 600;
  color: #633806;
  margin: 0 0 2px;
}

.hiw-credits-coming-soon__desc {
  font-size: 13px;
  color: #854f0b;
  line-height: 1.55;
  margin: 0;
}

/* ── IC EARN CARDS (stacked in left column) ─────── */
.hiw-credits-earn-card {
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 10px;
}

.hiw-credits-earn-card--volunteer { background: #e1f5ee; }
.hiw-credits-earn-card--donor    { background: #eeedfe; }

.hiw-credits-earn-card__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.hiw-credits-earn-card--volunteer .hiw-credits-earn-card__title { color: #0f6e56; }
.hiw-credits-earn-card--donor    .hiw-credits-earn-card__title { color: #534ab7; }

.hiw-credits-earn-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.hiw-credits-earn-item:last-child { margin-bottom: 0; }

.hiw-credits-earn-card--volunteer .hiw-credits-earn-item        { color: #085041; }
.hiw-credits-earn-card--volunteer .hiw-credits-earn-item strong { color: #04342c; }
.hiw-credits-earn-card--donor    .hiw-credits-earn-item         { color: #3c3489; }
.hiw-credits-earn-card--donor    .hiw-credits-earn-item strong  { color: #26215c; }

.hiw-credits-earn-item__icon {
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ── IC "WHAT THEY'RE NOT" (compact inline) ─────── */
.hiw-credits-not {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hiw-credits-not__item {
  font-size: 12px;
  color: var(--slate-mid);
}

/* ── IC UNLOCK GRID (inside feature card) ───────── */
.hiw-credits-unlock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hiw-credits-unlock-item {
  background: var(--bg);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.hiw-credits-unlock-item__icon {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.hiw-credits-unlock-item__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.hiw-credits-unlock-item__desc {
  font-size: 11px;
  color: var(--slate-mid);
  margin: 2px 0 0;
}

/* ── IC COMING SOON (card footer variant) ───────── */
.hiw-card-footer--amber {
  background: #faeeda;
  border-top: 1px solid rgba(239, 159, 39, 0.2);
  padding: 18px 26px;
}

.hiw-credits-coming-soon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hiw-credits-coming-soon__icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hiw-credits-coming-soon__title {
  font-size: 13px;
  font-weight: 600;
  color: #633806;
  margin: 0 0 2px;
}

.hiw-credits-coming-soon__desc {
  font-size: 12px;
  color: #854f0b;
  line-height: 1.55;
  margin: 0;
}

/* ── TRUST GRID ─────────────────────────────────── */
.hiw-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}

.hiw-trust-item {
  background: var(--white);
  padding: 30px 26px;
  transition: background 0.15s;
}

.hiw-trust-item:hover {
  background: var(--bg);
}

.hiw-trust-item--highlight {
  background: var(--coral-pale);
}

.hiw-trust-item--highlight:hover {
  background: var(--coral-pale);
}

.hiw-trust-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

.hiw-trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}

.hiw-trust-desc {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── FAQ ────────────────────────────────────────── */
.hiw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.hiw-faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.hiw-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.hiw-faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--coral);
  margin-top: 1px;
}

.hiw-faq-a {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 0;
}

.hiw-faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 5px 12px;
  background: var(--coral-pale);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
}

/* ── CLOSING ────────────────────────────────────── */
.hiw-closing {
  background: var(--slate);
  padding: 100px 56px;
}

.hiw-closing__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hiw-closing__h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 14px;
}

.hiw-closing__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 0;
}

.hiw-closing__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-closing__cta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.hiw-closing__cta-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
  color: white;
  text-decoration: none;
}

.hiw-closing__cta-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 86, 86, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.hiw-closing__cta-arrow {
  margin-left: auto;
  opacity: 0.4;
}

.hiw-closing__tagline {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hiw-closing__tagline p {
  font-size: clamp(16px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hiw-hero,
  .hiw-audience-grid,
  .hiw-closing__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiw-hero {
    padding: 48px 24px 56px;
  }

  .hiw-hero__svg-wrap {
    margin-top: 0;
  }

  .hiw-hero__svg-wrap img {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hiw-section {
    padding: 56px 24px;
  }

  .hiw-section--white .hiw-section__inner {
    padding: 0 24px;
  }

  .hiw-jump-nav {
    padding: 0 16px;
  }

  .hiw-steps-grid {
    grid-template-columns: 1fr;
  }

  .hiw-step {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .hiw-step:last-child {
    border-bottom: none;
  }

  .hiw-impact-flow {
    flex-wrap: wrap;
  }

  .hiw-impact-flow__step {
    flex: 1 1 40%;
  }

  .hiw-step__connector {
    display: none;
  }

  .hiw-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hiw-credits-grid {
    grid-template-columns: 1fr;
  }

  .hiw-credits-unlock-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-credits-earn-grid {
    grid-template-columns: 1fr;
  }

  .hiw-credits-unlock-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiw-closing {
    padding: 64px 24px;
  }

  .hiw-closing__tagline {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .hiw-trust-grid {
    grid-template-columns: 1fr;
  }

  .hiw-heading-icon {
    width: 34px;
    height: 34px;
    margin-top: 2px;
  }

  .hiw-hero__h1 {
    font-size: 30px;
  }

  .hiw-impact-flow {
    flex-direction: column;
    gap: 4px;
  }

  .hiw-impact-flow__step {
    flex: none;
  }

  .hiw-impact-flow__arrow {
    transform: rotate(90deg);
  }

  .hiw-credits-unlock-grid {
    grid-template-columns: 1fr 1fr;
  }
}
