/* ── FUNDING PR — small vars needed by funding-pr classes ── */
:root {
    --navy: #252560;
    --navy2: #334c98;
    --navy-dark: #252e4d;
    --navy-tint: #EEEEF8;
    --gold: #C8A84B
}

/* services page start */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/* ── TOPBAR ── */
.ticker-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
    margin-right: 1.5rem
}

/* ── NAV ── */

/* ── BREADCRUMB ── */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: .875rem var(--gutter)
}

.bc-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--ink3)
}

.bc-inner a {
    color: var(--ink3);
    text-decoration: none
}

.bc-inner a:hover {
    color: var(--brand)
}

.bc-sep {
    opacity: .4
}

.bc-current {
    color: var(--ink2);
    font-weight: 500
}

/* ── HERO ── */
.fp-hero {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 5.5rem var(--gutter) 0
}

.fp-hero-inner {
/*    max-width: var(--max);*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 6rem;
    align-items: start
}

.fp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--rule);
    border-radius: 100px;
    padding: .3rem .875rem .3rem .5rem;
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink2);
    margin-bottom: 1.75rem;
    background: var(--white)
}

.fp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    animation: fp-pulse 2s ease-in-out infinite
}
.btn-outline {
    border: 1.5px solid var(--rule);
    color: var(--ink);
    padding: .7rem 1.375rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: all .15s;
}

@keyframes fp-pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.fp-hero h1 {
    font-family: var(--serif);
    font-size: clamp(30px, 55px, 60px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.035em;
    color: var(--ink);
    margin-bottom: 1.375rem
}

.fp-hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.fp-hero-sub {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.8;
    margin-bottom: 2.25rem;
    font-weight: 300
}

.fp-hero-btns {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap
}

.fp-btn-solid {
    background: var(--brand);
    color: #fff;
    padding: .725rem 1.5rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: background .15s
}

.fp-btn-solid:hover {
    background: var(--navy2)
}

.fp-btn-outline {
    border: 1.5px solid var(--rule);
    color: var(--ink);
    padding: .7rem 1.375rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: all .15s
}

.fp-btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand)
}

/* hero right panel */
.fp-hero-aside {
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.result-card {
    background: var(--navy-dark);
    border-radius: 14px;
    padding: 2rem 1.875rem
}

.rc-tag {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: .75rem
}
.fade-up.visible {
    opacity: 1;
    transform: none;
    justify-content: center;
}

.rc-client {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: .75rem
}

.rc-stats {
    display: flex;
    gap: 2rem
}

.rc-stat-n {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -.05em;
    line-height: 1;
    display: block
}

.rc-stat-l {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-top: .2rem
}

.rc-desc {
    font-size: .8375rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-weight: 300
}

.stages-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 1.5rem
}

.stages-card-title {
    font-size: 20px;
    font-weight: 700;
    /* letter-spacing: .1em; */
    text-transform: uppercase;
    color: #526ab2;
    margin-bottom: 1rem;
    text-align: center;
}
.color_point {
    padding-bottom: 80px;
}

.stage-list {
    display: flex;
    /* flex-direction: column; */
    gap: .375rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .625rem;
    border-radius: 6px;
    transition: background .15s;
    cursor: default
}

.stage-item:hover {
    background: var(--navy-tint)
}

.stage-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.stage-dot.s1 {
    background: #94A3B8
}

.stage-dot.s2 {
    background: #60A5FA
}

.stage-dot.s3 {
    background: #34D399
}

.stage-dot.s4 {
    background: #F59E0B
}

.stage-dot.s5 {
    background: #F87171
}

.stage-dot.s6 {
    background: #A78BFA
}

.stage-name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink)
}

.stage-desc {
    font-size: .8rem;
    color: var(--ink3);
    margin-left: auto
}

/* ── HERO BAR ── */
.hero-bar {
    border-top: 1px solid var(--rule);
    padding: 1.875rem 0
}

.hero-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hb-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .875rem;
    color: var(--ink2);
    background: #526ab224;
    color: var(--brand);
    border-radius: 15px;
    padding: 3px 10px;
}

.hb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0
}

/* ── SHARED ── */
.fp-sec {
    padding: 96px var(--gutter)
}

.wrap {
    max-width: var(--max);
    margin: 0 auto
}

.fp-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .875rem
}

.fp-display {
    font-family: var(--serif);
    font-size: clamp(25px, 40px, 45px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.1;
    color: var(--ink);
}

.fp-display em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.fp-body-lg {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

/* ── TRUST BAR ── */
.trust-bg {
    background: var(--white);
    border-bottom: 1px solid var(--rule)
}

.trust-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule)
}

.trust-item {
    background: var(--white);
    padding: 2.25rem 2rem;
    text-align: center;
    transition: background .15s
}

.trust-item:hover {
    background: var(--paper)
}

.trust-n {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: .375rem
}

.trust-l {
    font-size: .8125rem;
    color: var(--ink3);
    font-weight: 400;
    line-height: 1.35
}

/* ── WHY IT MATTERS ── */
.why-bg {
    background: var(--paper);
    border-bottom: 1px solid var(--rule)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center
}

.why-left .fp-display {
    margin-bottom: 10px;
}

.why-left p {
    font-size: 1rem;
    color: var(--ink2);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 50px;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.why-card {
    gap: 1rem;
    align-items: flex-start;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 10px;
    transition: all .18s;
    height: 100%;
}

.why-card:hover {
    border-color: var(--brand);
    transform: translateX(4px)
}

.why-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--navy-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.why-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.why-card h4 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: .3rem
}

.why-card p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.62;
    font-weight: 300;
}

/* ── CHALLENGES — dark ── */
.chal-bg {
    background: var(--navy-dark)
}

.chal-bg .fp-eyebrow {
    color: rgba(255, 255, 255, .3)
}

.chal-bg .fp-display {
    color: #fff
}

.chal-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4rem
}

.chal-body-lg {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    font-weight: 300
}

.chal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    overflow: hidden
}

.chal-card {
    background: rgba(255, 255, 255, .03);
    padding: 2.25rem 1.875rem;
    transition: background .18s
}

.chal-card:hover {
    background: rgba(255, 255, 255, .07)
}

.chal-n {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgb(255 255 255 / 32%);
    letter-spacing: -.06em;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.chal-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: .5rem;
    line-height: 1.3;
    font-family: var(--sans) !important;
}

.chal-card p {
    font-size: 15px;
    color: rgb(255 255 255 / 59%);
    line-height: 1.7;
    font-weight: 300;
}

/* ── SERVICES ── */
.svc-bg {
    background: var(--white)
}

.svc-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4rem
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden
}

.svc-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    transition: background .15s;
    cursor: default
}

.svc-card:hover {
    background: var(--paper)
}

.svc-num {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 1rem
}

.svc-card h3 {
    font-family: var(--serif);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin-bottom: .625rem
}

.svc-card p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.68;
    font-weight: 300
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem;
    margin-top: .875rem
}

.svc-tag {
    font-size: .75rem;
    font-weight: 500;
    color: var(--brand);
    background: var(--navy-tint);
    padding: .25rem .625rem;
    border-radius: 100px;
    border: 1px solid rgba(37, 37, 96, .12)
}

/* ── PROCESS ── */
.proc-bg {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule)
}

.proc-head {
    margin-bottom: 4rem
}

.proc-steps {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden
}

.pstep {
    display: grid;
    grid-template-columns: 72px 1fr;
    border-bottom: 1px solid var(--rule);
    background: var(--white);
    transition: background .15s
}

.pstep:last-child {
11    border-bottom: none
}

.pstep:hover {
    background: var(--navy-tint)
}

.pstep-n {
    background: var(--brand);
    border-right: 1px solid var(--rule);
    padding: 2.125rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink3);
    color: #fff;
}

.pstep-body {
    padding: 2rem
}

.pstep-body h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: .5rem;
    font-family: var(--serif);
}

.pstep-body p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.7;
    font-weight: 300
}

/* ── STAGES ── */
.stages-bg {
    background: var(--white);
    border-bottom: 1px solid var(--rule)
}

.stages-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4rem
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.stage-card {
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 1.875rem 1.75rem;
    transition: border-color .18s, transform .18s;
    cursor: default
}

.stage-card:hover {
    border-color: var(--brand);
    transform: translateY(-2px)
}

.stage-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 1.125rem
}

.stage-card h3 {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: .5rem
}

.stage-card p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.68;
    font-weight: 300
}

/* ── IMPACT — navy ── */
.impact-bg {
    background: var(--brand)
}

.impact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center
}

.impact-left h2 {
    font-family: var(--serif);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 1.25rem
}

.impact-left h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold)
}

.impact-left .fp-eyebrow {
    color: rgba(255, 255, 255, .3)
}

.impact-left p {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem
}

.impact-quote {
    background: rgba(255, 255, 255, .05);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.375rem;
    margin-top: 1.5rem
}

.impact-quote p {
    font-family: var(--serif);
    font-size: .9375rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    line-height: 1.72
}

.impact-right {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: 1.125rem 1.375rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9px;
    transition: background .18s
}

.impact-item:hover {
    background: rgba(255, 255, 255, .08)
}

.ic {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(200, 168, 75, .12);
    border: 1px solid rgba(200, 168, 75, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem
}

.ic svg {
    width: 9px;
    height: 9px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.impact-item span {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 400;
    line-height: 1.45
}

/* ── INDUSTRIES ── */
.ind-bg {
    background: var(--paper);
    border-top: 1px solid var(--rule)
}

.ind-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 3rem
}

.ind-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.ind-tag {
    border: 1.5px solid var(--rule);
    padding: .45rem 1rem;
    border-radius: 100px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--ink2);
    background: var(--white);
    transition: all .18s;
    cursor: default
}

.ind-tag:hover,
.ind-tag.on {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

/* ── WHY MGPR ── */
.wmgpr-bg {
    background: var(--white);
    border-top: 1px solid var(--rule)
}

.wmgpr-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start
}

.wmgpr-left .fp-display {
    margin-bottom: 1.25rem
}

.wmgpr-left p {
    font-size: .9375rem;
    color: var(--ink2);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.375rem
}

.wmgpr-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule)
}

.wmgpr-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--rule)
}

.wmgpr-n {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rule);
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0;
    min-width: 2rem;
    margin-top: .1rem
}

.wmgpr-item h4 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: .3rem
}

.wmgpr-item p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.65;
    font-weight: 300
}

/* ── FAQ ── */
.faq-bg {
    background: var(--paper);
    border-top: 1px solid var(--rule)
}

.faq-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start
}

.faq-left .fp-display {
    margin-bottom: .875rem
}

.faq-left p {
    font-size: .9375rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

.faq-list {
    border-top: 1px solid var(--rule)
}

.faq-item {
    border-bottom: 1px solid var(--rule);
    border: solid 1px #d8d6cf;
    padding: 0 20px;
    border-radius: 10px;
    margin-bottom: 11px;
    background: #fff;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: var(--sans);
    font-size: .9375rem;
    font-weight: 600;
    color: var(--ink);
    transition: color .15s
}

.faq-btn:hover {
    color: var(--brand)
}

.faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--brand);
    border-radius: 2px;
    transition: all .25s;
    font-size: 13px !important;
}
.faq-list {
    border-top: 0;
}

span.faq-icon {
    background: #f0f2f8;
    border-radius: 50px;
    width: 24px;
    height: 24px;
    font-size: 17px !important;
}

.faq-icon::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.faq-icon::after {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.faq-btn.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s
}

.faq-body.open {
    max-height: 400px;
    padding-bottom: 1.25rem
}

.faq-body p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.78;
    font-weight: 300
}

/* ── CTA ── */
.cta-bg {
    background: var(--navy-dark);
    padding: 6rem var(--gutter)
}

.cta-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start
}

.cta-left .fp-eyebrow {
    color: rgba(255, 255, 255, .3)
}

.cta-left h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 1.125rem
}

.cta-left h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold)
}

.cta-left p {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.78;
    font-weight: 300
}

.cta-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.ctn {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
    display: block
}

.ctl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .2rem
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.cf-row {
    display: flex;
    gap: .75rem
}

.cf-inp {
    flex: 1;
    padding: .8125rem 1rem;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: .9375rem;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    outline: none;
    transition: border .2s
}

.cf-inp:focus {
    border-color: rgba(255, 255, 255, .35)
}

.cf-inp::placeholder {
    color: rgba(255, 255, 255, .3)
}

.cf-select {
    flex: 1;
    padding: .8125rem 1rem;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: .9375rem;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .07);
    outline: none;
    appearance: none;
    cursor: pointer
}

.cf-select option {
    background: #1a1d40;
    color: #fff
}

.cf-textarea {
    padding: .8125rem 1rem;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: .9375rem;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    outline: none;
    resize: none;
    height: 100px;
    width: 100%;
    transition: border .2s
}

.cf-textarea:focus {
    border-color: rgba(255, 255, 255, .35)
}

.cf-textarea::placeholder {
    color: rgba(255, 255, 255, .3)
}

.cf-submit {
    background: var(--white);
    color: var(--brand);
    padding: .8125rem 2rem;
    border-radius: 6px;
    border: none;
    font-family: var(--sans);
    font-size: .9375rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity .15s
}

.cf-submit:hover {
    opacity: .88
}

/* ── FOOTER ── */
/*.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: .875rem
}

.footer-brand span {
    font-weight: 300;
    font-style: italic
}*/

/*.footer-tagline {
    font-size: .875rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
    font-weight: 300;
    max-width: 240px
}*/

/*.footer-col h5 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 1rem
}*/

/*.footer-col a {
    display: block;
    font-size: .875rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-bottom: .5rem;
    font-weight: 300;
    transition: color .15s
}

.footer-col a:hover {
    color: rgba(255, 255, 255, .85)
}

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .2)
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
    text-decoration: none
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .6)
}*/

/* ── ANIM ── */
.fu {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.fu.vis {
    opacity: 1;
    transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

    .fp-hero-inner,
    .why-grid,
    .svc-head,
    .stages-head,
    .impact-layout,
    .ind-head,
    .wmgpr-layout,
    .faq-layout,
    .cta-inner,
    .proc-head,
    .chal-head {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }

    .trust-inner {
        grid-template-columns: 1fr 1fr
    }

    .stages-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    :root {
        --gutter: 1.25rem
    }

    .fp-hero {
        padding: 3.5rem var(--gutter) 0
    }

    .fp-sec {
        padding: 4rem var(--gutter)
    }

    .chal-grid,
    .svc-grid {
        grid-template-columns: 1fr
    }

    .stages-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .cf-row {
        flex-direction: column
    }

    .trust-inner {
        grid-template-columns: 1fr 1fr
    }

    .hero-bar-inner {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start
    }
}

/* services page end */

/* ── FUNDING PR — design polish (scoped, no homepage overlap) ── */
.result-card {
    box-shadow: 0 12px 32px -12px rgba(18, 20, 58, .35)
}

.stages-card {
    box-shadow: 0 4px 18px -8px rgba(0, 0, 0, .06)
}

.stage-item {
    cursor: pointer;
    border: solid 1px #f5f5f5;
    border-radius: 50px;
    background: #fcfcfc;
}

.stage-card {
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--stage-c, var(--brand));
    opacity: 0;
    transition: opacity .18s
}

.stage-card:hover::before {
    opacity: 1
}

.chal-card {
    position: relative
}

.chal-card:hover .chal-n {
    color: rgba(255, 255, 255, .12)
}

.svc-card {
    position: relative
}

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--navy-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    flex-shrink: 0
}

.svc-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pstep-n {
    font-variant-numeric: tabular-nums
}

.pstep:hover .pstep-n {
    color: var(--brand);
    background: var(--navy-tint)
}

.faq-btn {
    transition: padding-left .2s, color .15s
}

.faq-btn.open {
    color: var(--brand);
    padding-left: .375rem
}

.wmgpr-item {
    transition: padding-left .18s
}

.wmgpr-item:hover {
    padding-left: .5rem
}

.wmgpr-n {
    transition: color .18s
}

.wmgpr-item:hover .wmgpr-n {
    color: var(--brand)
}

/* Media logo strip (PRLab-inspired) */
.media-strip {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 2.75rem var(--gutter)
}

.media-strip .wrap {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center
}

.media-strip-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink3);
    white-space: nowrap
}

.media-strip-logos {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1
}

.media-strip-logos img {
    height: 24px;
    width: auto;
    opacity: .45;
    filter: grayscale(1);
    transition: opacity .2s
}

.media-strip-logos img:hover {
    opacity: .85
}

/* Button hover lift */
.fp-btn-solid:hover,
.fp-btn-outline:hover {
    transform: translateY(-1px)
}

.fp-btn-solid,
.fp-btn-outline {
    transition: background .15s, color .15s, border-color .15s, transform .15s
}

/* Eyebrow accent */
.fp-eyebrow {
    font-weight: 500 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand) !important;
    margin-bottom: .875rem !important;
    font-size: 15px !important;
}

.fp-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .7rem;
    height: 2px;
    background: var(--brand)
}

.chal-bg .fp-eyebrow::before,
.impact-bg .fp-eyebrow::before {
    background: var(--gold)
}
.fixed_side {
    position: sticky;
    top: 0;
}