/* Fundraising page */

body.fundraising-page {
  background: #fff;
}

/* Hero — split layout (headline + reviews left, figure center, form right) */

.fund-hero-split {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--navy);
  background-image: url("../images/blue-bellino-texture.webp");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: min(420px, 92vw);
}

.fund-hero-split-bg {
  display: none;
}

.fund-hero-split-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0.42) 0%,
    rgba(10, 30, 70, 0.62) 100%
  );
}

.fund-hero-split-main {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3.5vw, 36px) 0 clamp(24px, 3vw, 32px);
}

.fund-hero-split-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 500px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.fund-hero-split-copy {
  grid-column: 1;
  padding-right: clamp(8px, 2vw, 32px);
}

.fund-hero-split-copy-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(12px, 1.8vh, 18px);
}

.fund-hero-split-kicker {
  margin: 0;
  font-size: clamp(11px, 0.9vw, 12px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.fund-hero-split-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
}

.fund-hero-split-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.fund-hero-split-lead {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.fund-hero-reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: clamp(4px, 0.8vh, 10px) 0 0;
}

.fund-hero-reviews-label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.fund-hero-reviews-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.fund-hero-reviews-meta {
  flex: 1 1 100%;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.fund-hero-reviews-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-1 * clamp(24px, 3vw, 32px));
  z-index: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(28px, 4vh, 40px) 0;
  min-height: clamp(96px, 14vh, 132px);
  display: flex;
  align-items: center;
  background: transparent;
}

.fund-hero-reviews-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--gold-divider-height);
  background: var(--gold-divider-gradient);
  pointer-events: none;
}

.fund-hero-reviews-marquee-track {
  display: flex;
  width: max-content;
  animation: fund-hero-reviews-marquee 32s linear infinite;
}

.fund-hero-reviews-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
  padding-right: clamp(24px, 3vw, 36px);
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
}

.fund-hero-reviews-dot {
  color: var(--gold);
  font-size: clamp(12px, 1.1vw, 15px);
}

@keyframes fund-hero-reviews-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fund-hero-split-form {
  grid-column: 2;
  position: relative;
  z-index: 3;
  align-self: start;
  width: 100%;
  min-height: clamp(520px, 42vw, 580px);
  padding: 28px 30px 36px;
  border-radius: 16px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow:
    -16px 0 32px rgba(10, 30, 70, 0.1),
    0 2px 8px rgba(10, 30, 70, 0.06),
    0 20px 48px rgba(10, 30, 70, 0.16);
}

.fund-hero-split-form::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  z-index: 1;
  height: 58px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 72%);
  pointer-events: none;
}

.fund-hero-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.fund-hero-form-title {
  margin: 0 0 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.fund-hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fund-hero-form-label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.fund-hero-form-req {
  color: var(--red);
  font-weight: 800;
}

.fund-hero-form-label input,
.fund-hero-form-label select,
.fund-hero-form-label textarea {
  width: 100%;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8fb;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.fund-hero-form-label textarea {
  min-height: 64px;
  max-height: 96px;
  padding: 10px 13px;
  line-height: 1.45;
  resize: vertical;
}

.fund-hero-form-label select {
  padding-right: 36px;
  appearance: none;
  background-color: #f6f8fb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a1e46' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.fund-hero-form-label input::placeholder,
.fund-hero-form-label textarea::placeholder {
  color: #8b95a8;
  font-weight: 400;
}

.fund-hero-form-label input:hover,
.fund-hero-form-label select:hover,
.fund-hero-form-label textarea:hover {
  border-color: #bcc5d4;
  background: #fff;
}

.fund-hero-form-label input:focus,
.fund-hero-form-label select:focus,
.fund-hero-form-label textarea:focus {
  outline: none;
  border-color: var(--navy-3);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 30, 70, 0.1);
}

.fund-hero-form-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 28px rgba(225, 31, 45, 0.22);
}

.fund-hero-form-submit:hover {
  box-shadow: 0 14px 36px rgba(225, 31, 45, 0.28);
}

.fund-hero-form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #b8dfc4;
  background: #edf7f0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #1f5c33;
  text-align: center;
}

.fund-hero-form-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Contact Form 7 — fundraising inquiry (matches employment .emp-form-card styling) */
.fund-hero-split-form .fund-hero-form .wpcf7 {
  width: 100%;
}

.fund-hero-split-form .fund-hero-form .wpcf7-form {
  margin: 0;
}

.fund-hero-split-form .fund-hero-form .wpcf7 form br {
  display: none;
}

.fund-hero-split-form .fund-hero-form .hidden-fields-container {
  display: none;
}

.fund-hero-split-form .fund-hero-form .bfund3-form-grid {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.fund-hero-split-form .fund-hero-form .bfund3-span-2 {
  grid-column: 1 / -1;
}

.fund-hero-split-form .fund-hero-form label {
  display: block;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.fund-hero-split-form .fund-hero-form label > span:not(.wpcf7-form-control-wrap) {
  display: block;
  margin-bottom: 6px;
}

.fund-hero-split-form .fund-hero-form .wpcf7-form-control-wrap {
  display: block;
}

.fund-hero-split-form .fund-hero-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.fund-hero-split-form .fund-hero-form textarea,
.fund-hero-split-form .fund-hero-form select {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(10, 30, 70, 0.12);
  border-radius: 10px;
  background-color: #f6f8fb;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.fund-hero-split-form .fund-hero-form textarea {
  min-height: 96px;
  padding: 11px 14px;
  line-height: 1.5;
  resize: vertical;
}

.fund-hero-split-form .fund-hero-form input::placeholder,
.fund-hero-split-form .fund-hero-form textarea::placeholder {
  color: #8b95a8;
  font-weight: 400;
}

.fund-hero-split-form .fund-hero-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):hover,
.fund-hero-split-form .fund-hero-form textarea:hover,
.fund-hero-split-form .fund-hero-form select:hover {
  border-color: #bcc5d4;
  background-color: #fff;
}

.fund-hero-split-form .fund-hero-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
.fund-hero-split-form .fund-hero-form textarea:focus,
.fund-hero-split-form .fund-hero-form select:focus {
  outline: none;
  border-color: var(--navy-3);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(10, 30, 70, 0.1);
}

.fund-hero-split-form .fund-hero-form .wpcf7-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(225, 31, 45, 0.22);
}

.fund-hero-split-form .fund-hero-form .wpcf7-submit:hover {
  box-shadow: 0 14px 36px rgba(225, 31, 45, 0.28);
}

.fund-hero-split-form .fund-hero-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.fund-hero-split-form .fund-hero-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy);
  background: #f0f7f2;
  border: 1px solid rgba(34, 120, 60, 0.16);
}

@media (min-width: 560px) {
  .fund-hero-split-form .fund-hero-form .bfund3-form-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .fund-hero-split-form .fund-hero-form .wpcf7-response-output {
    grid-column: 1 / -1;
  }
}

.fund-page-trust-band {
  padding: 40px 0 48px;
  background: #fff;
}

.fund-page-mid-band .fund-page-trust-band {
  background: transparent;
}

.fund-page-trust-list {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0 0 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
}

.fund-page-trust-feature {
  text-align: center;
}

.fund-page-trust-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.14);
}

.fund-page-trust-feature-icon--red {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 10px 22px rgba(225, 31, 45, 0.22);
}

.fund-page-trust-feature-icon--pin {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  color: var(--red);
  border: 1px solid rgba(225, 31, 45, 0.14);
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.08);
}

.fund-page-trust-feature-icon svg {
  width: 30px;
  height: 30px;
}

.fund-page-trust-feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.fund-page-trust-feature p {
  margin: 0 auto;
  max-width: 30ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 500;
}

.fund-page-kicker {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0 0 16px;
}

.fund-page-kicker--left {
  justify-items: start;
}

.fund-page-kicker__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.35em;
  line-height: 1;
}

.fund-page-kicker p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.fund-page-section .section-head .fund-page-kicker {
  margin-bottom: 14px;
}

.fund-page-org-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.fund-page-org-tags span {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.fund-page-stats {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 8px 28px;
  padding: 36px 0;
}

.fund-page-stat {
  text-align: center;
  padding: 4px 6px;
}

.fund-page-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--gold);
}

.fund-page-stat span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.fund-page-section {
  padding: 72px 0;
}

.fund-page-section--light {
  background: #f7f9fc;
  border-block: 1px solid var(--line);
}

.fund-page-faq-cta-band {
  background: #fff;
}

.fund-page-provisions.fund-page-section--light {
  background: transparent;
  border: none;
  padding-bottom: clamp(40px, 5vw, 56px);
}

.fund-page-partner .usa250-story-card {
  margin: 0;
}

.fund-page-partner-card.usa250-story-card {
  display: grid;
  width: 100%;
  height: auto;
  min-height: clamp(320px, 42vw, 565px);
  max-height: none;
}

.fund-page-partner-card .usa250-copy {
  padding: clamp(36px, 4.5vw, 52px) clamp(32px, 4.5vw, 56px);
}

.fund-page-partner-card .usa250-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--navy);
  max-width: 28ch;
}

.fund-page-partner-card .usa250-copy > p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.65;
  max-width: 42ch;
}

.fund-page-partner-card .fund-page-kicker {
  margin-bottom: 14px;
}

.fund-page-partner-card .fund-page-checklist {
  margin-top: 4px;
}

.fund-page-section .section-head {
  margin-bottom: 36px;
}

.fund-page-section .section-head.center-head h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.fund-page-split-copy .fund-page-kicker {
  margin-bottom: 14px;
}

/* Audience cards — process-hchain style (matches gift cards steps) */
.fund-page-audience.process-hchain--cards,
.fund-page-audience .process-hchain__list.process-hchain__list--cards {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  --process-hchain-chain-top: calc(clamp(1.35rem, 2vw, 1.65rem) + 10px + 13px + 14px + 32px);
}

.fund-page-audience .process-hchain__list.process-hchain__list--cards {
  --process-hchain-gap: clamp(0.65rem, 1.2vw, 1rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--process-hchain-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.fund-page-audience .process-hchain__list.process-hchain__list--cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--process-hchain-chain-top);
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(217, 164, 32, 0.15) 0%,
    var(--gold) 50%,
    rgba(217, 164, 32, 0.15) 100%
  );
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.fund-page-audience .process-hchain__list--cards > .process-hchain__item {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: clamp(1.35rem, 2vw, 1.65rem) clamp(1rem, 1.4vw, 1.25rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(10, 30, 70, 0.06);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fund-page-audience .process-hchain__list--cards > .process-hchain__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(217, 164, 32, 0.15) 0%,
    var(--gold) 50%,
    rgba(217, 164, 32, 0.15) 100%
  );
  pointer-events: none;
}

.fund-page-audience .process-hchain__list--cards > .process-hchain__item:hover {
  border-color: rgba(217, 164, 32, 0.28);
  box-shadow: 0 14px 28px rgba(10, 30, 70, 0.1);
  transform: translateY(-2px);
}

.fund-page-audience .process-hchain__list--cards .process-hchain__body {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fund-page-audience .process-hchain__list--cards .process-hchain__marker {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.fund-page-audience .process-hchain__list--cards .process-hchain__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 0 16px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.14);
}

.fund-page-audience .process-hchain__list--cards .process-hchain__icon--navy {
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
}

.fund-page-audience .process-hchain__list--cards .process-hchain__icon--red {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 10px 22px rgba(225, 31, 45, 0.22);
}

.fund-page-audience .process-hchain__list--cards .process-hchain__icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.fund-page-audience .process-hchain__list--cards .process-hchain__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.fund-page-audience .process-hchain__list--cards .process-hchain__tag {
  margin: 0 auto;
  max-width: 30ch;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-soft);
}

.fund-page-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.fund-page-split-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--navy);
}

.fund-page-split-copy > p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-soft);
  font-weight: 500;
}

.fund-page-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.fund-page-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--navy);
}

.fund-page-checklist li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.fund-page-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(10, 30, 70, 0.1);
}

.fund-page-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 30%;
}

/* Google reviews — navy texture band (matches home fundraising-section--navy) */
.fund-page-reviews {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../images/blue-bellino-texture.webp");
  background-repeat: repeat;
  background-size: min(420px, 92vw);
  border-block: 3px solid rgba(255, 255, 255, 0.1);
}

.fund-page-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0.46) 0%,
    rgba(10, 30, 70, 0.74) 100%
  );
}

.fund-page-reviews > .container {
  position: relative;
  z-index: 1;
}

.fund-page-reviews .client-proof-wrap {
  position: relative;
  z-index: 1;
  padding: 0;
}

.fund-page-reviews .client-proof__head .fund-page-kicker p {
  color: var(--gold);
}

.fund-page-reviews .client-proof--split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.5rem 2.5rem;
  align-items: stretch;
  margin: 0 0 1.25rem;
}

.fund-page-reviews .client-proof__head {
  min-width: 0;
  padding: 0.15rem 0 0;
}

.fund-page-reviews .client-proof__head .fund-page-kicker {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.fund-page-reviews .client-proof__highlights {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fund-page-reviews .client-proof__title {
  margin: 0 0 0.85rem;
  padding: 0 0 0.4rem;
  text-align: left;
  line-height: 1.05;
  max-width: 22ch;
  font-size: clamp(1.85rem, 1.2rem + 1.4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: rgba(255, 255, 255, 0.96);
}

.fund-page-reviews .client-proof__title-accent {
  background: linear-gradient(135deg, var(--gold) 0%, #f0d078 48%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@supports not (background-clip: text) {
  .fund-page-reviews .client-proof__title-accent {
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
    background: none;
  }
}

.fund-page-reviews .client-proof__lead {
  margin: 0;
  padding: 0 0 0 1.1rem;
  max-width: 40rem;
  border-left: 1px solid rgba(217, 164, 32, 0.42);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.fund-page-reviews .g-maps-rollup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  width: 100%;
  min-height: 7.5rem;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(ellipse 110% 70% at 50% -18%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    rgba(12, 24, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.04), 0 18px 60px rgba(0, 0, 0, 0.35);
}

.fund-page-reviews .g-maps-rollup__logo {
  flex: 0 0 auto;
  line-height: 0;
  padding: 2px 0 0;
}

.fund-page-reviews .g-maps-rollup__logo img {
  display: block;
}

.fund-page-reviews .g-maps-rollup__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
  margin: 0 0 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.fund-page-reviews .g-maps-rollup__label strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.fund-page-reviews .g-maps-rollup__scoreline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.fund-page-reviews .g-maps-rollup__score {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.fund-page-reviews .g-star-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
  color: #fbbc04;
  font-size: 15px;
}

.fund-page-reviews .g-star-row--md {
  font-size: 18px;
  gap: 0;
  letter-spacing: -0.05em;
}

.fund-page-reviews .g-review-card {
  margin: 0;
  padding: 16px 16px 14px;
  min-height: 18.5rem;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(ellipse 110% 70% at 50% -18%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    rgba(12, 24, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fund-page-reviews .g-review-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.fund-page-reviews .g-review-carousel__viewport {
  overflow: hidden;
  min-width: 0;
  container-type: inline-size;
}

.fund-page-reviews .g-review-carousel .g-review-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  justify-content: flex-start;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fund-page-reviews .g-review-carousel .g-review-grid::-webkit-scrollbar {
  display: none;
}

.fund-page-reviews .g-review-carousel .g-review-grid--portrait .g-review-card {
  flex: 0 0 calc((100cqi - 2rem) / 3);
  width: calc((100cqi - 2rem) / 3);
  min-width: min(100%, 280px);
  max-width: none;
  scroll-snap-align: start;
}

.fund-page-reviews .g-review-carousel__btn {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(12, 24, 51, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.fund-page-reviews .g-review-carousel__btn:hover:not(:disabled) {
  border-color: rgba(217, 164, 32, 0.35);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 14px 28px -12px rgba(217, 164, 32, 0.2);
  transform: translateY(-1px);
}

.fund-page-reviews .g-review-carousel__btn:focus-visible {
  outline: 2px solid rgba(217, 164, 32, 0.45);
  outline-offset: 3px;
}

.fund-page-reviews .g-review-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.fund-page-reviews .g-review-grid--portrait[data-review-animate]:not(.is-revealed) .g-review-card {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
}

.fund-page-reviews .g-review-grid--portrait[data-review-animate] .g-review-card {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:nth-child(1) {
  transition-delay: 0ms;
}

.fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:nth-child(2) {
  transition-delay: 110ms;
}

.fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:nth-child(3) {
  transition-delay: 220ms;
}

.fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:nth-child(n + 4) {
  transition-delay: 330ms;
}

.fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:hover {
  transform: translate3d(0, -5px, 0) scale(1);
  border-color: rgba(217, 164, 32, 0.22);
  background:
    radial-gradient(ellipse 100% 65% at 50% 0%, rgba(217, 164, 32, 0.1) 0%, transparent 55%),
    rgba(16, 28, 58, 0.95);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 22px 44px -18px rgba(217, 164, 32, 0.12),
    0 16px 36px -22px rgba(0, 0, 0, 0.14);
}

.fund-page-reviews .g-review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.fund-page-reviews .g-review-card__avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-3) 0%, var(--navy) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fund-page-reviews .g-review-card__identity {
  min-width: 0;
  flex: 1 1 auto;
  padding-top: 1px;
}

.fund-page-reviews .g-review-card__name {
  margin: 0 0 1px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.03em;
}

.fund-page-reviews .g-review-card__meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.fund-page-reviews .g-review-card__badge {
  flex: 0 0 auto;
  line-height: 0;
  opacity: 0.9;
  padding: 2px 0 0;
}

.fund-page-reviews .g-review-card__badge img,
.fund-page-reviews .g-review-card__source-icon {
  display: block;
}

.fund-page-reviews .g-review-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin: 0 0 8px 52px;
  min-height: 22px;
}

.fund-page-reviews .g-review-card__time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  white-space: nowrap;
}

.fund-page-reviews .g-review-card__text {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.fund-page-reviews .g-review-card__text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.fund-page-reviews .g-review-card__source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 0 0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1080px) {
  .fund-page-reviews .g-review-carousel .g-review-grid--portrait .g-review-card {
    flex-basis: calc((100cqi - 1rem) / 2);
    width: calc((100cqi - 1rem) / 2);
  }
}

@media (max-width: 900px) {
  .fund-page-reviews .client-proof--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .fund-page-reviews .client-proof__highlights {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .fund-page-reviews .g-review-carousel {
    gap: 8px;
  }

  .fund-page-reviews .g-review-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .fund-page-reviews .g-review-carousel .g-review-grid--portrait .g-review-card {
    flex-basis: calc(100cqi - 0.5rem);
    width: calc(100cqi - 0.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fund-page-reviews .g-review-carousel .g-review-grid {
    scroll-behavior: auto;
  }

  .fund-page-reviews .g-review-grid--portrait[data-review-animate]:not(.is-revealed) .g-review-card {
    opacity: 1;
    transform: none;
  }

  .fund-page-reviews .g-review-grid--portrait[data-review-animate] .g-review-card,
  .fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:nth-child(n) {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    transition-delay: 0ms !important;
  }

  .fund-page-reviews .g-review-grid--portrait.is-revealed .g-review-card:hover {
    transform: none;
  }
}

/* Fundraising partners marquee — inside reviews band */
.fund-page-reviews .fund-page-reviews-partners {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 2vw, 20px) 0 0;
}

.fund-page-reviews.fund-page-section {
  padding-bottom: clamp(32px, 4vw, 44px);
}

.fund-page-partners-intro-wrap {
  position: relative;
  z-index: 1;
}

.fund-page-partners-intro {
  width: min(920px, 100%);
  margin: 0 auto clamp(28px, 3.5vw, 36px);
  padding-top: clamp(8px, 1.5vw, 16px);
  text-align: center;
}

.fund-page-partners-kicker {
  margin: 0 0 14px;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.fund-page-partners-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.fund-page-partners-lead {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
}

.fund-page-partners-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.fund-page-partners-marquee-track {
  display: flex;
  width: max-content;
  animation: fund-page-partners-marquee 70s linear infinite;
}

.fund-page-partners-marquee:hover .fund-page-partners-marquee-track {
  animation-play-state: paused;
}

.fund-page-partners-marquee-group {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
  padding-inline: clamp(8px, 1.5vw, 12px);
  flex-shrink: 0;
}

.fund-page-partners-marquee .fund-page-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(260px, 26vw, 300px);
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  gap: 10px;
}

.fund-page-partners-marquee .fund-page-partner-card__logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(72px, 6vw, 80px);
  height: clamp(72px, 6vw, 80px);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  object-fit: contain;
  box-sizing: border-box;
}

.fund-page-partners-marquee .fund-page-partner-card__identity {
  min-width: 0;
  width: 100%;
}

.fund-page-partners-marquee .fund-page-partner-card__logo-link {
  display: block;
  margin: 0 auto;
  line-height: 0;
}

.fund-page-partners-marquee .fund-page-partner-card__name-link {
  color: inherit;
  text-decoration: none;
}

.fund-page-partners-marquee .fund-page-partner-card__name-link:hover,
.fund-page-partners-marquee .fund-page-partner-card__name-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

.fund-page-partners-marquee .fund-page-partner-card__logo-link:hover .fund-page-partner-card__logo,
.fund-page-partners-marquee .fund-page-partner-card__logo-link:focus-visible .fund-page-partner-card__logo {
  opacity: 0.88;
}

.fund-page-partners-marquee .fund-page-partner-card__name {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
}

.fund-page-partners-marquee .fund-page-partner-card__meta {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.52);
}

.fund-page-partners-marquee .fund-page-partner-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

@keyframes fund-page-partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fund-page-partners-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 16px;
    padding-inline: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
  }

  .fund-page-partners-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .fund-page-partners-marquee {
    mask-image: none;
  }
}

.fund-page-provisions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.fund-page-provision-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 22px 20px 20px;
  border-radius: 14px;
  border: 1px solid rgba(10, 30, 70, 0.1);
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 30, 70, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fund-page-provision-card:hover {
  border-color: rgba(217, 164, 32, 0.28);
  box-shadow: 0 14px 32px rgba(10, 30, 70, 0.08);
  transform: translateY(-2px);
}

.fund-page-provision-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(10, 30, 70, 0.12);
}

.fund-page-provision-card__icon--navy {
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
}

.fund-page-provision-card__icon--red {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 8px 18px rgba(225, 31, 45, 0.18);
}

.fund-page-provision-card__icon svg {
  display: block;
}

.fund-page-provision-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--navy);
  max-width: 22ch;
}

.fund-page-provision-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(19, 35, 62, 0.68);
  font-weight: 500;
  max-width: 28ch;
}

.fund-page-provisions-role {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  padding: 8px 0 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.fund-page-provisions-role__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.fund-page-provisions-role__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(217, 164, 32, 0.1);
  border: 1px solid rgba(217, 164, 32, 0.28);
  box-shadow: none;
}

.fund-page-provisions-role .fund-page-provisions-role__kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.fund-page-provisions-role h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy);
  max-width: 38ch;
}

.fund-page-provisions-role p {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 500;
  color: var(--text-soft);
  max-width: 58ch;
}

.fund-page-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(10, 30, 70, 0.06);
}

.fund-page-offer h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--navy);
}

.fund-page-offer > div > p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  font-weight: 500;
}

.fund-page-offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.fund-page-offer-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy);
}

.fund-page-offer-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 12px;
}

.fund-page-bottom-cta-band {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #fff;
}

.fund-page-faq-cta-band .fund-page-bottom-cta-band {
  background: transparent;
}

.fund-page-bottom-cta-band .fund-page-bottom-cta {
  margin-top: 0;
}

.fund-page-bottom-cta {
  margin-top: clamp(28px, 3.5vw, 40px);
}

.fund-page-bottom-cta__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  padding: 40px clamp(24px, 4vw, 36px) 34px;
  border-radius: 12px;
  border: 1px solid rgba(217, 164, 32, 0.62);
  background:
    radial-gradient(ellipse 110% 70% at 50% -18%, rgba(217, 164, 32, 0.1) 0%, transparent 52%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  box-shadow:
    0 4px 0 rgba(10, 30, 70, 0.18),
    0 18px 44px rgba(10, 30, 70, 0.14);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.fund-page-bottom-cta__title {
  margin: 0 auto 10px;
  max-width: 24ch;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.96);
}

.fund-page-bottom-cta__lead {
  margin: 0 auto 18px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.fund-page-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.fund-page-bottom-cta__actions .btn-primary {
  min-height: 52px;
  padding: 0 28px;
  font-weight: 900;
  box-shadow:
    0 14px 40px rgba(225, 31, 45, 0.32),
    0 8px 24px rgba(10, 30, 70, 0.22);
}

.fund-page-bottom-cta__actions .btn-outline-light {
  min-height: 52px;
  padding: 0 28px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .fund-hero-split-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }

  .fund-hero-split-copy {
    grid-row: auto;
    min-height: auto;
    padding-right: 0;
  }

  .fund-hero-split-form {
    grid-column: 1;
    grid-row: auto;
  }

  .fund-hero-reviews-marquee {
    left: 0;
    right: 0;
    bottom: calc(-1 * clamp(24px, 3vw, 32px));
    width: 100%;
    max-width: 100%;
    min-height: 72px;
    padding: 20px 0;
  }

  .fund-hero-split-form {
    min-height: 0;
  }

  .fund-hero-split-form::after {
    display: none;
  }

  .fund-hero-reviews-marquee-track {
    padding-left: 0;
  }

  .fund-hero-split-copy-head {
    flex: none;
    justify-content: flex-start;
  }

  .fund-hero-split-copy h1 {
    max-width: none;
  }

  .fund-page-trust-list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 400px;
  }

  .fund-page-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px 24px;
    width: 100%;
    max-width: 100%;
  }

  .fund-page-audience .process-hchain__list.process-hchain__list--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fund-page-audience .process-hchain__list.process-hchain__list--cards::before {
    display: none;
  }


  .fund-page-split,
  .fund-page-offer {
    grid-template-columns: 1fr;
  }

  .fund-page-provisions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .fund-hero-split-main {
    padding: 28px 0 24px;
  }

  .fund-hero-split-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
  }

  .fund-hero-form-row {
    grid-template-columns: 1fr;
  }

  .fund-page-stats {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }

  .fund-page-provisions-grid {
    grid-template-columns: 1fr;
  }

  .fund-page-provisions-role__icon {
    width: 48px;
    height: 48px;
  }

  .fund-page-audience.process-hchain--cards,
  .fund-page-audience .process-hchain__list.process-hchain__list--cards {
    overflow-x: clip;
  }

  .fund-page-audience .process-hchain__list.process-hchain__list--cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
  }

  .fund-page-audience .process-hchain__list.process-hchain__list--cards::before {
    display: block;
    left: 40px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 2px;
    height: auto;
    transform: none;
  }

  .fund-page-audience .process-hchain__list--cards > .process-hchain__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: 14px;
    row-gap: 0;
    align-items: start;
    text-align: left;
    padding: 14px 14px 14px 12px;
    min-width: 0;
  }

  .fund-page-audience .process-hchain__list--cards .process-hchain__marker {
    display: none;
  }

  .fund-page-audience .process-hchain__list--cards .process-hchain__icon {
    grid-column: 1;
    grid-row: 1;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 16px;
    align-self: start;
    justify-self: center;
  }

  .fund-page-audience .process-hchain__list--cards .process-hchain__icon svg {
    width: 26px;
    height: 26px;
  }

  .fund-page-audience .process-hchain__list--cards .process-hchain__body {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
    text-align: left;
  }

  .fund-page-audience .process-hchain__list--cards .process-hchain__tag {
    max-width: none;
    font-size: 13px;
    line-height: 1.62;
  }

  .fund-page-audience .process-hchain__list--cards .process-hchain__title {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .fund-page-offer {
    padding: 22px 18px;
  }

  .fund-page-bottom-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .fund-page-bottom-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ — same Squarespace-style block as products page */
.fund-page-faq {
  padding: 0;
  background: transparent;
  border-top: none;
}

.fund-page-faq__bleed {
  width: 100%;
  background: transparent;
}

.fund-page-faq__inner {
  padding: clamp(48px, 6vw, 72px) 0 clamp(72px, 8vw, 104px);
}

.fund-page-faq__content {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  max-width: none;
  margin: 0;
}

.fund-page-faq__header {
  margin: 0;
  text-align: left;
}

.fund-page-faq__header h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}

.fund-page-faq__header-lead {
  margin: clamp(18px, 2.4vw, 24px) 0 0;
  max-width: 22ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.fund-page-faq__header-sub {
  margin: 6px 0 0;
  max-width: 22ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.fund-page-faq__cta {
  margin-top: clamp(22px, 2.8vw, 30px);
  min-height: 52px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(225, 31, 45, 0.22);
}

.fund-page-faq__list {
  width: 100%;
  min-width: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.fund-page-faq__item {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}

.fund-page-faq__item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 0;
  padding: clamp(16px, 2vw, 20px) 0;
  cursor: pointer;
}

.fund-page-faq__item summary::-webkit-details-marker {
  display: none;
}

.fund-page-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.15em;
}

.fund-page-faq__toggle::before,
.fund-page-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fund-page-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.fund-page-faq__item[open] .fund-page-faq__toggle::after {
  opacity: 0;
}

.fund-page-faq__question {
  flex: 1;
  min-width: 0;
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: left;
  color: var(--navy);
}

.fund-page-faq__item summary:focus {
  outline: none;
}

.fund-page-faq__item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.fund-page-faq__answer {
  padding: 0 0 clamp(18px, 2.5vw, 22px) 28px;
  border-top: none;
}

.fund-page-faq__answer p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.7;
  font-weight: 500;
  text-align: left;
  color: var(--text-soft);
}

.fund-page-faq__answer a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.fund-page-faq__answer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .fund-page-faq__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fund-page-faq__header-lead,
  .fund-page-faq__header-sub {
    max-width: none;
  }
}
