:root {
    --primary: #1E7729;
    --primary-hover: #165c1f;
    --secondary: #3B82F6;
    --secondary-lt: #EFF6FF;
    --accent: #F97316;
    --accent-lt: #FFF7ED;
    --teal: #0D9488;
    --teal-lt: #F0FDFA;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-dark: #F1F5F9;
    --text: #0F172A;
    --subtext: #475569;
    --muted: #94A3B8;
    --border: #E2E8F0;
    --border-soft: #F1F5F9;
    --white: #FFFFFF;

    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
    --fw-900: 900;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, .15), 0 8px 20px rgba(0, 0, 0, .08);

    --max-w: 1280px;
    --section-py: 96px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(44px, 5.5vw, 62px);
    font-weight: var(--fw-900);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

h2 {
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: var(--fw-800);
}

h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: var(--fw-700);
}

p {
    font-family: 'DM Sans', sans-serif;
}

.lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--subtext);
    font-weight: var(--fw-400);
}

.small {
    font-size: 14px;
    color: var(--subtext);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

.section-pad {
    padding: var(--section-py) 0;
}

.eyebrow,
.story-stage-tag {
    display: none !important;
}

.eyebrow::before {
    display: none;
    content: none;
}

.eyebrow-center {
    display: none !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: var(--fw-600);
    font-size: 15px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: scale(1.03);
}

.btn .arrow {
    font-size: 16px;
    transition: transform .18s ease;
}

.btn:hover .arrow {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 119, 41, .3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 26px rgba(30, 119, 41, .38);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--secondary-lt);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--subtext);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--primary);
}

.btn-white {
    background: var(--bg-dark);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

.btn-white-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-white-outline:hover {
    border-color: var(--text);
    color: var(--text);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.8);
        opacity: .6;
    }
}

@keyframes progressLoad {
    from {
        width: 0;
    }

    to {
        width: var(--target-w, 75%);
    }
}

/* Scroll-triggered fade-up */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .45s;
}

.scroll-anim {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.scroll-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-anim.sa-delay-1 {
    transition-delay: .08s;
}

.scroll-anim.sa-delay-2 {
    transition-delay: .16s;
}

.scroll-anim.sa-delay-3 {
    transition-delay: .24s;
}

.scroll-anim.sa-delay-4 {
    transition-delay: .32s;
}

/* Hero immediate animation */
.hero-anim {
    animation: fadeSlideUp .7s ease forwards;
}

.ha-1 {
    animation-delay: .1s;
    opacity: 0;
}

.ha-2 {
    animation-delay: .22s;
    opacity: 0;
}

.ha-3 {
    animation-delay: .36s;
    opacity: 0;
}

.ha-4 {
    animation-delay: .52s;
    opacity: 0;
}

.ha-5 {
    animation-delay: .68s;
    opacity: 0;
}

#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), #228E2B);
    transition: width .08s linear;
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 128px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px) saturate(1.8);
    -webkit-backdrop-filter: blur(18px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

#site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.top-social-bar {
    height: 32px;
    border-bottom: 1px solid var(--border);
}

.top-social-wrap {
    max-width: var(--max-w);
    height: 32px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.top-social-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--subtext);
    line-height: 1;
}

.top-social-title::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--border);
    margin-left: 12px;
    vertical-align: middle;
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--text);
    transition: color .18s ease, transform .18s ease;
}

.top-social-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.top-social-links svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor;
}

.header-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -.5px;
}

.logo-text .accent-dot {
    color: var(--accent);
}

/* Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--subtext);
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    transition: background .15s, color .15s;
}

.nav-links a:hover {
    background: rgba(30, 119, 41, .1);
    color: #000;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta .btn-sm {
    padding: 12px 22px;
    font-size: 15px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s;
    display: block;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 18px 24px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav>a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    padding: 13px 0;
    border-bottom: 1px solid var(--border-soft);
}

.mobile-nav>a:last-of-type {
    border-bottom: none;
}

.mobile-nav-btns {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
    background: transparent;
}

.mobile-nav-btns .btn {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: none;
    padding: 0 18px;
}

.mobile-nav-btns .btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1.5px solid var(--primary);
    box-shadow: 0 4px 14px rgba(30, 119, 41, .22);
}

.mobile-nav-btns .btn-outline {
    background: var(--bg);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    box-shadow: none;
}

.hero {
    min-height: min(88vh, 940px);
    padding: 176px 0 96px;
    background:
        linear-gradient(90deg, rgba(6, 13, 12, .48) 0%, rgba(6, 13, 12, .38) 38%, rgba(6, 13, 12, .2) 100%),
        linear-gradient(155deg, rgba(12, 26, 21, .35) 0%, rgba(6, 13, 12, .28) 45%, rgba(10, 21, 24, .32) 100%),
        url('hero-bg.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .15;
    background-image:
        linear-gradient(rgba(30, 119, 41, .4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 119, 41, .4) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 55% at 5% 55%, rgba(59, 130, 246, .09) 0%, transparent 100%),
        radial-gradient(ellipse 45% 45% at 97% 12%, rgba(249, 115, 22, .07) 0%, transparent 100%),
        radial-gradient(ellipse 30% 30% at 50% 90%, rgba(30, 119, 41, .04) 0%, transparent 100%);
}

.hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 640px;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Hero Left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 7px 16px;
    margin-bottom: 26px;
    box-shadow: var(--shadow-sm);
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--subtext);
}

.badge-text strong {
    color: #228E2B;
}

.hero-title {
    margin-bottom: 24px;
    max-width: 760px;
    font-size: clamp(36px, 4.45vw, 51px);
    line-height: 1.16;
    color: #fff;
}

.hero-title .hi-line {
    display: block;
    white-space: nowrap;
}

.hero-title .hi-blue {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .hi-blue::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), #228E2B);
    border-radius: 3px;
    opacity: .7;
}

.hero-title .hi-accent {
    color: #228E2B;
}

.hero-copy {
    width: min(840px, 100%);
    max-width: none;
    text-align: left;
    padding-top: 42px;
    margin-left: 0;
    align-self: flex-start;
}

.hero-desc {
    max-width: 620px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.86);
}

.hero-sub {
    margin-bottom: 36px;
    max-width: 500px;
    color: rgba(255,255,255,.86);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-stats {
    border-top: 1px solid rgba(255,255,255,.22);
    padding-top: 28px;
    margin-top: 72px;
    width: min(1120px, 100%);
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
}

.hs-item {
    text-align: left;
    padding: 0 12px;
}

.hs-item:first-child {
    padding-left: 0;
    text-align: left;
}

.hs-num {
    color: #fff;
    font-size: clamp(34px, 3vw, 42px);
    font-weight: 800;
}

.hs-label {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,.86);
    max-width: 100%;
}

.hs-divider {
    background: rgba(255,255,255,.22);
    height: 60px;
}

.trusted-clients {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
    padding: 48px 0 28px;
    text-align: center;
}

.trusted-clients::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .26;
    background-image:
        linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
    background-size: 52px 52px;
}

.trusted-clients::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 15%, rgba(40, 133, 198, .12) 0%, transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(30, 119, 41, .14) 0%, transparent 24%);
}

.trusted-clients .container {
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

.trusted-head {
    margin-bottom: 32px;
}

.trusted-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    padding: 0 0 28px;
}

.trusted-logo-card {
    flex: 1 1 132px;
    min-width: 132px;
    height: 70px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    transition: none;
}

.trusted-logo-card:hover {
    transform: none;
}

.trusted-logo-card img {
    width: auto;
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
}

.trusted-logo-card[data-logo="phoenix insurance"] img {
    max-height: 36px;
}

.trusted-logo-card[data-logo="miup"] img {
    max-height: 32px;
}

.trusted-logo-card[data-logo="arab"] img {
    max-height: 38px;
}

.trusted-logo-card[data-logo="nsu"] img {
    max-height: 34px;
}

.trusted-logo-card[data-logo="bmcci"] img {
    max-height: 36px;
}

.trusted-logo-card[data-logo="iub"] img {
    max-height: 34px;
}

.trusted-logo-card[data-logo="jahaji"] img {
    max-height: 36px;
}

.trusted-logo-card[data-logo="asiann tiger"] img {
    max-height: 32px;
}

.partner-testimonials {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0 0 84px;
    margin-top: -1px;
}

.partner-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 52px 52px;
}

.partner-testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: none;
}

.ptest-static-head {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 34px;
}

.ptest-static-head .eyebrow {
    justify-content: center;
    display: flex;
}

.ptest-static-head h2 {
    color: var(--text);
    max-width: 720px;
    margin: 0 auto;
}

.ptest-slider-shell {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 0 auto;
    overflow: hidden;
    /* padding: 0 64px; */
}

.ptest-static-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    cursor: grab;
}

.ptest-static-grid::-webkit-scrollbar {
    display: none;
}

.ptest-static-grid.is-dragging {
    cursor: grabbing;
}

.ptest-static-grid>.ptest-static-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

.ptest-static-card {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

.ptest-static-card.expanded {
    min-height: 640px;
}

.ptest-static-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptest-static-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 24, 18, .06) 0%, rgba(8, 24, 18, .44) 56%, rgba(8, 24, 18, .92) 100%);
}

.ptest-static-body {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    text-align: left;
}

.ptest-static-card.expanded .ptest-static-body {
    min-height: 640px;
}

.ptest-static-quote-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto;
}

.ptest-static-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.66;
    color: rgba(255, 255, 255, .96);
    letter-spacing: -.15px;
    text-align: left;
    margin: 0;
    overflow: hidden;
    max-height: calc(1.66em * 4);
    transition: max-height .28s ease;
}

.ptest-static-card.expanded .ptest-static-quote {
    overflow: visible;
    max-height: 420px;
}

.ptest-static-toggle {
    background: none;
    border: 0;
    padding: 0;
    color: #9FD0FF;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.ptest-static-toggle::after {
    content: 'â†“';
    font-size: 12px;
    transition: transform .2s ease;
}

.ptest-static-card.expanded .ptest-static-toggle::after {
    transform: rotate(180deg);
}

.ptest-static-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
}

.ptest-static-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, .1);
    flex-shrink: 0;
}

.ptest-static-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptest-static-name {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.ptest-static-role {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.45;
}

.ptest-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, .96);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
    opacity: 0.3;
}

.ptest-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: var(--primary);
    color: #fff;
    opacity: 1;
}

.ptest-prev {
    left: 8px;
}

.ptest-next {
    right: 8px;
}

.ptest-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.ptest-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.ptest-dot {
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, .35);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.ptest-dot.active {
    width: 24px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .trusted-logos {
        gap: 12px;
        padding: 0;
        justify-content: center;
    }

    .trusted-logo-card {
        height: 56px;
        padding: 10px 16px;
    }

    .trusted-logo-card img {
        max-width: 90px;
        max-height: 30px;
    }

    .partner-testimonials {
        padding: 28px 0 64px;
    }

    .ptest-slider-shell {
        padding: 0;
    }

    .ptest-static-grid {
        gap: 14px;
    }

    .ptest-static-grid>.ptest-static-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ptest-static-card,
    .ptest-static-body {
        min-height: 460px;
    }

    .ptest-static-card.expanded,
    .ptest-static-card.expanded .ptest-static-body {
        min-height: 560px;
    }

    .ptest-static-body {
        padding: 22px;
    }

    .ptest-static-quote {
        font-size: 15px;
    }
}

.ptest-static-toggle::after {
    content: '+';
    font-size: 12px;
    line-height: 1;
    transition: none;
}

.ptest-static-card.expanded .ptest-static-toggle::after {
    content: '-';
    transform: none;
}

.ptest-static-card.expanded .ptest-static-quote {
    max-height: 520px;
}

@media (max-height: 1080px) and (min-width: 901px) {
    .hero {
        min-height: 820px;
        padding: 160px 0 84px;
        margin-top: 40px;
    }
}

.hs-item {
    flex: 1 1 0;
    font-variant-numeric: tabular-nums;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 124px;
}

.hs-divider {
    width: 1px;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 124px;
}

/* Hero Right */
.hero-visual {
    position: relative;
}

.hero-main-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 4/3;
}

.hero-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.hero-main-img:hover img {
    transform: scale(1.04);
}

.hero-img-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 22, 40, .55) 100%);
}

.hero-img-pill {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.hip-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hip-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hip-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
}

.hip-sub {
    font-size: 12px;
    color: var(--subtext);
    margin-top: 1px;
}

/* Float cards */
.float-card {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    min-width: 168px;
    z-index: 2;
}

.fc-label {
    font-size: 11.5px;
    color: var(--subtext);
    font-weight: 500;
    margin-bottom: 5px;
}

.fc-val {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}

.fc-badge {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

.fc-green {
    background: #DCFCE7;
    color: #15803D;
}

.fc-blue {
    background: var(--secondary-lt);
    color: var(--primary);
}

.fc-top-right {
    top: -16px;
    right: -16px;
    animation: floatY 5s ease-in-out infinite;
}

.fc-bottom-left {
    bottom: 136px;
    left: -22px;
    animation: floatY 6s ease-in-out infinite .8s;
}

.what-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 72px;
    align-items: center;
}

.what-img-col {
    position: relative;
}

.what-img-frame {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    aspect-ratio: auto;
}

.what-img-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.what-content {
    padding-bottom: 20px;
}

.what-content h2 {
    margin-bottom: 16px;
    color: #000;
}

.what-desc {
    margin-bottom: 24px;
    max-width: 600px;
    line-height: 1.5;
    font-size: 15px;
    color: var(--text);
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.bullet-item {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
}

.bullet-item::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--primary, #3b82f6);
    border-radius: 50%;
}

.what-content .lead {
    margin-bottom: 36px;
    max-width: 480px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: grid;
    grid-template-columns: 96px 1px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-stat {
    text-align: center;
}

.feature-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.8px;
    color: #22C55E;
}

.feature-stat-label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--subtext);
}

.feature-divider {
    width: 1px;
    align-self: stretch;
    background: var(--border);
}

.feature-copy {
    min-width: 0;
}

.fi-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.fi-desc {
    font-size: 14px;
    color: var(--subtext);
    line-height: 1.65;
}

.what-cta {
    margin-top: 18px;
}

.why-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 52% 68% at 5% 46%, rgba(34, 197, 94, .06) 0%, transparent 60%),
        radial-gradient(ellipse 34% 42% at 92% 14%, rgba(13, 148, 136, .05) 0%, transparent 56%);
}

.why-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .12;
    background-image:
        linear-gradient(rgba(0, 0, 0, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px);
    background-size: 64px 64px;
}

.why-section .eyebrow {
    color: #22C55E;
}

.why-section h2 {
    color: var(--text);
}

.why-section .lead,
.why-heading-copy {
    color: var(--subtext);
}

.why-heading-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 62px;
    text-align: center;
}

.why-heading-left h2 {
    margin: 0;
    max-width: 100%;
    line-height: 1.08;
}

.why-heading-copy {
    font-size: 17px;
    line-height: 1.82;
    color: var(--subtext);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.why-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.why-feature {
    width: calc(33.333% - 15px);
    min-width: 280px;
    flex: 0 0 auto;
    position: relative;
    min-height: 100%;
    padding: 30px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.why-cta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.why-item,
.wstat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.why-feature-copy {
    margin-bottom: 0;
}

.why-feature-statline {
    display: block;
    margin-bottom: 18px;
}

.why-feature-num {
    font-family: 'Manrope', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -2.4px;
    color: #22C55E;
    font-variant-numeric: tabular-nums;
}

.why-feature-mini {
    display: none;
}

.why-feature-title {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.22;
    color: var(--text);
    max-width: 100%;
    margin-bottom: 16px;
}

.why-feature-desc {
    font-size: 15px;
    line-height: 1.72;
    color: var(--subtext);
    max-width: 100%;
    margin-bottom: 0;
}

.why-feature-media {
    margin-top: 22px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .03);
}

.why-feature-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.why-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.why-item {
    min-height: 220px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.why-item:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, .4);
    background: rgba(0, 0, 0, .02);
}

.wi-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--bg-dark);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wi-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.wi-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.28;
    color: var(--text);
    margin: 0 0 10px;
    max-width: 16ch;
}

.wi-desc {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--subtext);
    max-width: 28ch;
}

.why-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wstat {
    min-height: 118px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.wstat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #22C55E;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
    font-variant-numeric: tabular-nums;
}

.wstat-label {
    font-size: 13px;
    color: var(--subtext);
    font-weight: 500;
}

.programs-section {
    background: var(--bg-soft);
}

.programs-restored {
    background: var(--bg-soft);
}

.programs-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.programs-header h2 {
    margin-bottom: 16px;
}

.programs-header .lead {
    max-width: 620px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.programs-grid>.program-card {
    grid-column: span 2;
}

.programs-grid>.program-card:nth-child(4) {
    grid-column: 2 / 4;
}

.programs-grid>.program-card:nth-child(5) {
    grid-column: 4 / 6;
}

.program-card {
    position: relative;
    min-height: 574px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--bg-soft);
    box-shadow: 0 24px 54px rgba(4, 10, 8, .14);
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 16, 13, .12) 0%, rgba(6, 16, 13, .26) 36%, rgba(6, 16, 13, .9) 100%);
}

.program-pill {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--secondary);
    border: 1px solid rgba(30, 58, 138, .12);
    font-size: 12px;
    font-weight: 700;
}

.program-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 20px 22px;
    color: #fff;
}

.program-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.16;
    color: #fff;
    margin-bottom: 12px;
}

.program-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 18px;
}

.program-card-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.program-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
}

.program-card-footer a:hover {
    color: #fff;
}

#partner-testimonials-slider .owl-stage-outer, #community-testimonials-slider .owl-stage-outer {
    overflow: hidden;
    width: 100%;
}

#partner-testimonials-slider .owl-stage, #community-testimonials-slider .owl-stage {
    display: flex;
}

#partner-testimonials-slider .owl-item, #community-testimonials-slider .owl-item {
    box-sizing: border-box;
}

#partner-testimonials-slider .ptest-static-card, #community-testimonials-slider .ptest-static-card {
    width: 100%;
    display: block;
}

#partner-testimonials-slider .owl-nav,
#partner-testimonials-slider .owl-prev,
#partner-testimonials-slider .owl-next,
#community-testimonials-slider .owl-nav,
#community-testimonials-slider .owl-prev,
#community-testimonials-slider .owl-next {
    display: none !important;
}

@media (max-width: 1100px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid>.program-card,
    .programs-grid>.program-card:nth-child(4),
    .programs-grid>.program-card:nth-child(5) {
        grid-column: auto;
    }

    .program-card {
        min-height: 540px;
    }
}

@media (max-width: 767px) {
    .programs-header {
        margin-bottom: 30px;
    }

    .program-card {
        min-height: 500px;
        border-radius: 24px;
    }

    .program-pill {
        top: 14px;
        left: 14px;
        min-height: 32px;
        padding: 0 13px;
        font-size: 11px;
    }

    .program-card-body {
        padding: 0 18px 18px;
    }

    .program-card-title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .program-card-desc {
        font-size: 14px;
        line-height: 1.62;
        margin-bottom: 14px;
    }

    .ptest-arrow {
        display: none !important;
    }
}

.programs-landing {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
    scroll-margin-top: 138px;
}

.programs-hero {
    position: relative;
    min-height: 680px;
    padding: 112px 0 76px;
    display: flex;
    align-items: stretch;
    background:
        linear-gradient(90deg, rgba(6, 13, 12, .9) 0%, rgba(6, 13, 12, .78) 42%, rgba(6, 13, 12, .44) 100%),
        url('program-2.jpg') center center / cover no-repeat;
}

.programs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(6, 13, 12, .18) 0%, rgba(6, 13, 12, .94) 100%),
        linear-gradient(90deg, rgba(30, 119, 41, .2) 0%, transparent 46%);
}

.programs-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, #071210 88%);
}

.programs-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.programs-hero-copy {
    max-width: 780px;
    padding-top: 48px;
}

.programs-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.programs-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
}

.programs-hero .lead {
    max-width: 620px;
    color: var(--subtext);
}

.programs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.programs-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: -42px;
    position: relative;
    z-index: 2;
    background: var(--bg);
    border: 1px solid var(--border);
}

.programs-stat {
    min-height: 138px;
    padding: 26px;
    background: var(--bg);
}

.programs-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #22C55E;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.programs-stat-label {
    max-width: 24ch;
    font-size: 14px;
    line-height: 1.55;
    color: var(--subtext);
}

.programs-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 38px 0 0;
}

.programs-subnav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--subtext);
    font-size: 14px;
    font-weight: 700;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.programs-subnav a:hover {
    color: var(--text);
    border-color: rgba(34, 197, 94, .58);
    background: rgba(34, 197, 94, .1);
}

.programs-band {
    padding: 88px 0;
    scroll-margin-top: 138px;
}

.programs-band.alt {
    background: var(--bg-soft);
}

.programs-band-head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.programs-band-head h2 {
    max-width: 520px;
}

.programs-band-head .lead {
    max-width: 570px;
}

.programs-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.programs-info-card {
    min-height: 260px;
    padding: 26px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.programs-info-card.featured {
    background:
        linear-gradient(180deg, rgba(14, 29, 26, .2) 0%, rgba(14, 29, 26, .96) 72%),
        url('program-3.jpg') center center / cover no-repeat;
}

.programs-info-card h3 {
    color: var(--text);
    margin-bottom: 12px;
}

.programs-info-card p {
    color: var(--subtext);
    font-size: 15px;
    line-height: 1.68;
}

.programs-card-num {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #22C55E;
    margin-bottom: 32px;
}

.programs-method-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 28px;
    align-items: stretch;
}

.programs-method-media {
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.programs-method-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-steps {
    display: grid;
    gap: 14px;
}

.programs-step {
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
}

.programs-step span {
    display: inline-block;
    margin-bottom: 10px;
    color: #22C55E;
    font-weight: 900;
    font-size: 13px;
}

.programs-step h3 {
    margin-bottom: 8px;
}

.programs-step p {
    color: var(--subtext);
    font-size: 15px;
    line-height: 1.66;
}

.programs-stories-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
}

.programs-story-feature {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-end;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(6, 13, 12, .04) 0%, rgba(6, 13, 12, .9) 78%),
        url('hannan.png') center center / cover no-repeat;
}

.programs-story-feature h3 {
    max-width: 520px;
    margin-bottom: 12px;
    font-size: clamp(24px, 3vw, 34px);
}

.programs-story-feature p {
    max-width: 570px;
    color: rgba(255, 255, 255, .74);
}

.programs-story-list {
    display: grid;
    gap: 16px;
}

.programs-story-card {
    min-height: 160px;
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
}

.programs-story-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.programs-story-card p {
    color: var(--subtext);
    font-size: 15px;
    line-height: 1.66;
}

.prog-header {
    text-align: center;
    margin-bottom: 52px;
}

.prog-header h2 {
    margin-bottom: 14px;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prog-card {
    position: relative;
    background: #0B1624;
    border-radius: 28px;
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 575px;
    box-shadow: var(--shadow-md);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.prog-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.prog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.prog-card:hover .prog-img img {
    transform: scale(1.05);
}

.prog-img-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 30, .08) 0%, rgba(8, 18, 30, .18) 32%, rgba(8, 18, 30, .68) 74%, rgba(8, 18, 30, .9) 100%);
}

.prog-img-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 6px 16px rgba(10, 22, 40, .08);
}

.prog-count {
    position: absolute;
    bottom: 182px;
    right: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 58px;
    font-weight: 900;
    color: rgba(255, 255, 255, .18);
    line-height: .9;
    letter-spacing: -2px;
    text-shadow: 0 8px 18px rgba(10, 22, 40, .16);
    display: none;
}

.prog-body {
    position: relative;
    z-index: 2;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.prog-card h3 {
    margin-bottom: 8px;
    padding-right: 72px;
    line-height: 1.22;
    color: #fff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.prog-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.72;
    margin-bottom: 16px;
    max-width: 92%;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .24);
}

.prog-tags {
    display: none;
}

.ptag {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: var(--radius-full);
}

.ptag-blue,
.ptag-orange,
.ptag-teal {
    background: #ECFDF3;
    color: #228E2B;
}

.prog-foot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.prog-aud {
    font-size: 13px;
    color: var(--subtext);
    font-weight: 500;
}

.prog-cta-link {
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    transition: gap .18s ease, transform .18s ease;
    text-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.prog-cta-link .arrow {
    display: inline-block;
    transition: transform .18s ease;
}

.prog-cta-link.blue,
.prog-cta-link.orange,
.prog-cta-link.teal {
    color: #fff;
}

.prog-card:hover .prog-cta-link {
    gap: 10px;
    transform: translateY(-1px);
}

.prog-card:hover .prog-cta-link .arrow {
    transform: translateX(2px);
}

.join-section {
    background: var(--bg-soft);
}

.join-section.section-pad {
    padding-top: calc(var(--section-py) * .5);
}

.join-header {
    text-align: center;
    margin-bottom: 52px;
}

.join-header h2 {
    margin-bottom: 14px;
}

.join-header .lead {
    max-width: 560px;
    margin: 0 auto;
}

.join-layout {
    display: grid !important;
    grid-template-columns: 4fr 5fr;
    gap: 24px;
}

.join-left,
.join-form-wrap {
    min-height: 100%;
}

.join-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.join-left {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px 26px 30px;
    box-shadow: none;
    height: 100%;
}

.join-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    flex: 1;
}

.join-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    box-shadow: none;
    cursor: default;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    user-select: none;
    height: auto;
}

.join-card:hover {
    transform: none;
    background: transparent;
}

.join-card.selected {
    background: transparent;
    box-shadow: none;
}

.join-card:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.join-left-head {
    margin-bottom: 22px;
}

.join-left-head h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -.6px;
}

.join-left-head p {
    font-size: 15px;
    color: var(--subtext);
    line-height: 1.68;
    margin: 0;
}

.join-stats-row {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.join-stat {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.join-stat:not(:last-child) {
    border-right: 1px solid var(--border);
}

.join-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.5px;
}

.join-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--subtext);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.join-quote-block {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.join-quote-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    opacity: .3;
    margin-bottom: 10px;
}

.join-quote-text {
    font-size: 14px;
    color: var(--subtext);
    line-height: 1.65;
    font-style: italic;
    margin: 0 0 12px;
}

.join-quote-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.jc-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    text-align: left;
}

.jc-desc {
    font-size: 14px;
    color: var(--subtext);
    line-height: 1.55;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

.join-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px 32px;
    box-shadow: var(--shadow-sm);
}

.join-form-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.3;
    letter-spacing: -.4px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.jf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.jf-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jf-full {
    margin-bottom: 16px;
}

.jf-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.jf-check {
    position: relative;
}

.jf-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.jf-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.jf-check-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid var(--muted);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .18s ease, background .18s ease;
}

.jf-check-box::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--white);
    opacity: 0;
    transform: scale(.6);
    transition: opacity .18s ease, transform .18s ease;
}

.jf-check input:checked+.jf-check-label {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 119, 41, .1);
    background: rgba(30, 119, 41, .08);
}

.jf-check input:checked+.jf-check-label .jf-check-box {
    border-color: var(--primary);
    background: var(--primary);
}

.jf-check input:checked+.jf-check-label .jf-check-box::after {
    opacity: 1;
    transform: scale(1);
}

.jf-check input:focus-visible+.jf-check-label {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 119, 41, .12);
}

.jf-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
}

.jf-input,
.jf-select,
.jf-textarea {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    -webkit-appearance: none;
    appearance: none;
}

.jf-input::placeholder,
.jf-textarea::placeholder {
    color: var(--muted);
}

.jf-input:focus,
.jf-select:focus,
.jf-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 119, 41, .1);
    background: var(--bg);
}

.jf-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 44px;
}

.jf-textarea {
    min-height: 132px;
    resize: vertical;
}

.jf-submit-row {
    margin-top: 8px;
}

.jf-submit-row .btn {
    min-width: 140px;
}

.impact-slider-section {
    background: var(--bg);
}

.isl-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 430px;
    margin-bottom: 28px;
    perspective: 1400px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.isl-stage.is-dragging {
    cursor: grabbing;
}

.isl-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.isl-card {
    position: absolute;
    width: 34%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition:
        transform .52s cubic-bezier(.4, 0, .2, 1),
        opacity .52s cubic-bezier(.4, 0, .2, 1),
        box-shadow .52s ease,
        width .52s cubic-bezier(.4, 0, .2, 1);
    will-change: transform, opacity;
}

.isl-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.isl-card[data-state="active"] {
    width: 34%;
    z-index: 3;
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
    box-shadow: var(--shadow-xl);
    pointer-events: auto;
}

.isl-card[data-state="prev"] {
    width: 34%;
    z-index: 2;
    opacity: .82;
    transform: translateX(-104%) rotateY(8deg) scale(.92);
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.isl-card[data-state="prev"] .isl-content {
    opacity: .9;
}

.isl-card[data-state="next"] {
    width: 34%;
    z-index: 2;
    opacity: .82;
    transform: translateX(104%) rotateY(-8deg) scale(.92);
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.isl-card[data-state="next"] .isl-content {
    opacity: .9;
}

.isl-card[data-state="hidden"] {
    width: 34%;
    z-index: 1;
    opacity: 0;
    transform: translateX(0) scale(.88);
    pointer-events: none;
}

.isl-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, .04) 0%, rgba(10, 22, 40, .62) 55%, rgba(10, 22, 40, .95) 100%);
}

.isl-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.isl-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 10px;
}

.isl-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.isl-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.65;
    margin-bottom: 16px;
}

.isl-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.isl-tag {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .85);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: var(--radius-full);
}

.isl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, box-shadow .18s, transform .18s;
    color: var(--primary);
}

.isl-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.isl-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.07);
}

.isl-prev {
    left: 18px;
}

.isl-next {
    right: 18px;
}

.isl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.isl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s, border-radius .2s;
}

.isl-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* New Stories from the ground slider */
.sftg-slider {
    position: relative;
    max-width: 1160px;
    margin: 0 auto 28px;
    overflow: hidden;
}

.sftg-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.sftg-card {
    flex: 0 0 calc(33.333% - 16px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}

.sftg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sftg-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sftg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.sftg-card:hover .sftg-img-wrap img {
    transform: scale(1.05);
}

.sftg-body {
    padding: 22px 20px 24px;
}

.sftg-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(30, 119, 41, .12);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.sftg-body h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.sftg-body p {
    font-size: 13.5px;
    color: var(--subtext);
    line-height: 1.65;
}

.sftg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, box-shadow .18s, transform .18s;
    color: var(--primary);
}

.sftg-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.sftg-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.07);
}

.sftg-prev {
    left: 8px;
}

.sftg-next {
    right: 8px;
}

.sftg-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.sftg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s, border-radius .2s;
}

.sftg-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

@media (max-width: 900px) {
    .sftg-card {
        flex: 0 0 calc(50% - 12px);
    }

    .sftg-track {
        gap: 20px;
    }

    .sftg-card:last-child {
        display: none;
    }
}

@media (max-width: 640px) {
    .sftg-card {
        flex: 0 0 100%;
    }

    .sftg-card:nth-child(2),
    .sftg-card:last-child {
        display: none;
    }

    .sftg-track {
        gap: 0;
    }

    .sftg-arrow {
        width: 38px;
        height: 38px;
    }

    .sftg-img-wrap {
        height: 180px;
    }
}

.impact-header {
    text-align: center;
    margin-bottom: 56px;
}

.impact-header h2 {
    margin-bottom: 14px;
}

.stories-owl-shell {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    overflow: hidden;
}

.stories-owl {
    display: flex;
    align-items: stretch;
    gap: 28px;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    cursor: grab;
}

.stories-owl::-webkit-scrollbar {
    display: none;
}

.stories-owl.is-dragging {
    cursor: grabbing;
}

.stories-owl>.stories-slide-card {
    flex: 0 0 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
}

.stories-slide-card {
    position: relative;
    min-height: 510px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: var(--shadow-xl);
}

.stories-slide-card img {
    width: 100%;
    min-height: 510px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stories-slide-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 24, 18, .06) 0%, rgba(8, 24, 18, .44) 56%, rgba(8, 24, 18, .92) 100%);
}

.stories-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 30px 18px;
}

.stories-slide-meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 10px;
}

.stories-slide-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 12px;
}

.stories-slide-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .84);
    margin-bottom: 0;
}

.stories-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stories-slide-tag {
    padding: 7px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.stories-owl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, .96);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.stories-owl-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: var(--primary);
    color: #fff;
}

.stories-owl-prev {
    left: 8px;
}

.stories-owl-next {
    right: 8px;
}

.stories-owl-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.stories-owl-fallback-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.stories-owl-fallback-dot {
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, .35);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.stories-owl-fallback-dot.active {
    width: 24px;
    background: var(--primary);
}

.stories-owl-arrow {
    opacity: 0.4;
}
.stories-owl-arrow:hover {
        opacity: 1;
    }

@media (max-width: 767px) {
    .stories-owl-shell {
        
    }

    .stories-owl {
        gap: 14px;
    }

    .stories-owl>.stories-slide-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Stat strip */
.impact-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
    background: var(--bg-soft);
}

.istrip-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    background: var(--bg);
    transition: background .2s;
}

.istrip-item:last-child {
    border-right: none;
}

.istrip-item:hover {
    background: var(--bg-soft);
}

.is-icon-wrap {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-icon-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}

.is-num {
    font-family: 'Manrope', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.is-lbl {
    font-size: 13.5px;
    color: var(--subtext);
    font-weight: 500;
    margin-top: 6px;
}

/* Feature + cards */
.impact-body {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.impact-feature {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 380px;
}

.impact-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-feature-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(10, 22, 40, .85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
}

.ifs-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 10px;
}

.ifs-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.ifs-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
    margin-bottom: 20px;
}

.ifs-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ifs-tag {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: var(--radius-full);
}

.impact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: center;
}

.impact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-xs);
    flex: none;
    transition: transform .2s, box-shadow .2s;
}

.impact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ic-thumb {
    width: 84px;
    height: 84px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.ic-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ic-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 5px;
}

.ic-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.ic-desc {
    font-size: 13px;
    color: var(--subtext);
    line-height: 1.62;
}

.impact-cta-wrap {
    margin-top: 0;
}

.impact-cta-wrap .btn {
    width: 100%;
    justify-content: center;
}

.stories-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.stories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 52% 68% at 5% 46%, rgba(34, 197, 94, .06) 0%, transparent 60%),
        radial-gradient(ellipse 34% 42% at 92% 14%, rgba(13, 148, 136, .05) 0%, transparent 56%);
}

.stories-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .1;
    background-image:
        linear-gradient(rgba(0, 0, 0, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px);
    background-size: 64px 64px;
}

.test-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.test-header h2 {
    margin-bottom: 14px;
    color: var(--text);
}

.stories-section .test-header .lead {
    color: var(--subtext);
}

.stories-section .eyebrow {
    color: #228E2B;
}

.stories-section .eyebrow::before {
    background: #228E2B;
}

.story-shell {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.story-stage {
    background: linear-gradient(180deg, #ffffff 0%, #F8FBFF 100%);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 34px 34px 28px;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    color: #0F172A;
}

.story-stage-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 24px;
}

.story-stage-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: var(--radius-full);
    background: rgba(30, 119, 41, .06);
    border: 1px solid rgba(30, 119, 41, .2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--primary);
}

.story-quote-mark {
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: .7;
    color: rgba(30, 119, 41, .24);
}

.story-stage-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.story-quote {
    font-size: 29px;
    line-height: 1.5;
    letter-spacing: -0.8px;
    color: #0F172A;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.story-subquote {
    font-size: 15px;
    line-height: 1.85;
    color: #58708F;
    max-width: 88%;
}

.story-stage-footer {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.story-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(30, 119, 41, .16);
    box-shadow: 0 10px 18px rgba(15, 23, 42, .09);
    flex-shrink: 0;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-name {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 3px;
}

.story-role {
    font-size: 13.5px;
    color: #58708F;
}

.story-counter {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.2px;
}

.story-counter span {
    color: var(--muted);
    font-weight: 700;
}

.story-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-item {
    width: 100%;
    text-align: left;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.story-item:hover,
.story-item:focus-visible {
    transform: translateY(-2px);
    border-color: var(--border);
    background: var(--bg-soft);
    box-shadow: var(--shadow-md);
    outline: none;
}

.story-item.is-active {
    background: rgba(34, 197, 94, .08);
    border-color: rgba(34, 197, 94, .4);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, .28) inset;
}

.story-item-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, .1);
    flex-shrink: 0;
}

.story-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-item-main {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.story-item-name {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    display: block;
}

.story-item-role {
    font-size: 13.5px;
    color: var(--subtext);
    line-height: 1.5;
    display: block;
}

.story-item-line {
    width: 3px;
    align-self: stretch;
    border-radius: 999px;
    background: var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

.story-item-line::after {
    content: '';
    display: block;
    width: 100%;
    height: var(--story-progress, 0%);
    background: #22C55E;
    transition: height var(--story-progress-duration, 3000ms) linear;
}

.village-section {
    background: var(--bg);
}

.village-section .test-header h2 {
    color: var(--text);
}

.village-section .test-header .lead {
    color: var(--subtext);
}

.village-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.village-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.village-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 119, 41, .22);
    box-shadow: var(--shadow-lg);
}

.village-card[data-video] {
    cursor: pointer;
}

.village-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.village-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.village-card:hover .village-thumb img {
    transform: scale(1.04);
}

.village-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, .02) 0%, rgba(10, 22, 40, .14) 48%, rgba(10, 22, 40, .42) 100%);
}

.village-loc {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .94);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.village-loc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
}

.village-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    pointer-events: none;
}

.village-play svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
    margin-left: 2px;
}

.village-duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    padding: 0 8px;
    border-radius: 8px;
    background: rgba(17, 24, 39, .88);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

.village-body {
    padding: 22px 22px 24px;
}

.village-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.village-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(30, 119, 41, .12);
    flex-shrink: 0;
}

.village-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.village-name {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px;
}

.village-role {
    font-size: 13px;
    line-height: 1.5;
    color: var(--subtext);
}

.village-title {
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    line-height: 1.38;
    font-weight: 800;
    color: var(--text);
    margin-top: 2px;
    letter-spacing: -.4px;
    margin-left: -22px;
    margin-right: -22px;
    padding: 12px 18px;
}

.updates-section {
    background: var(--bg-soft);
    padding: 60px 0 84px;
}

.updates-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.updates-head h2 {
    margin: 0 0 14px;
    color: var(--text);
}

.updates-head .lead {
    max-width: 620px;
    margin: 0 auto;
    color: var(--subtext);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.updates-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(30, 119, 41, .14);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    grid-column: span 2;
}

.updates-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 119, 41, .3);
    box-shadow: var(--shadow-lg);
}

.updates-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.updates-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.updates-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.updates-card:hover .updates-media img {
    transform: scale(1.04);
}

.updates-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .03) 0%, rgba(0, 0, 0, .12) 100%);
}

.updates-body {
    position: relative;
    z-index: 1;
    padding: 20px 22px 22px;
}

.updates-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.updates-date {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(30, 119, 41, .06);
    border: 1px solid rgba(30, 119, 41, .1);
    color: #39D353;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1px;
}

.updates-kind {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: capitalize;
    letter-spacing: 0px;
}

.updates-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: -.55px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
}

.updates-desc {
    font-size: 14.5px;
    line-height: 1.74;
    color: var(--subtext);
    margin: 0 0 18px;
}

.updates-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.updates-link .arrow {
    color: var(--primary);
}

.blog-section {
    background: var(--bg);
    padding: 60px 0 84px;
}

.blog-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.blog-head h2 {
    margin: 0 0 14px;
    color: var(--text);
}

.blog-head .lead {
    max-width: 620px;
    margin: 0 auto;
    color: var(--subtext);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(30, 119, 41, .14);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 119, 41, .3);
    box-shadow: var(--shadow-lg);
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.blog-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-card:hover .blog-media img {
    transform: scale(1.04);
}

.blog-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .03) 0%, rgba(0, 0, 0, .12) 100%);
}

.blog-body {
    position: relative;
    z-index: 1;
    padding: 20px 22px 22px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(30, 119, 41, .06);
    border: 1px solid rgba(30, 119, 41, .1);
    color: #39D353;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1px;
}

.blog-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: -.55px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.blog-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--subtext);
    margin-top: 10px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.blog-read-more .arrow {
    color: var(--primary);
    transition: transform .18s ease;
}

.blog-card:hover .blog-read-more .arrow {
    transform: translateX(3px);
}

.faq-section {
    background:
        radial-gradient(1200px 520px at 0% 0%, rgba(40, 133, 198, .08), transparent 55%),
        radial-gradient(980px 460px at 100% 100%, rgba(34, 142, 43, .08), transparent 55%),
        var(--bg-soft);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .025) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .32;
    pointer-events: none;
}

.faq-wrap {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.faq-head {
    text-align: center;
    margin-bottom: 28px;
}

.faq-head h2 {
    margin-bottom: 12px;
}

.faq-head .lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--subtext);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.faq-question {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.3px;
}

.faq-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #39D353;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform .24s ease, opacity .24s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}

.faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--subtext);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 10, 22, .72);
    backdrop-filter: blur(10px);
}

.video-modal.open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.video-modal-panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    background: #050D19;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 13, 25, .72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-modal-close svg {
    width: 18px;
    height: 18px;
    display: block;
}

.video-modal video {
    width: 100%;
    display: block;
    background: #000;
    max-height: min(78vh, 720px);
}

.partners-section {
    background: var(--bg-soft);
}

.partners-header {
    text-align: center;
    margin-bottom: 52px;
}

.partners-header h2 {
    margin-bottom: 14px;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.plogo {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 32px;
    min-width: 148px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    filter: grayscale(1) opacity(.7);
    transition: filter .2s, transform .2s, box-shadow .2s, border-color .2s;
}

.plogo:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.plogo-name {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.plogo-sub {
    font-size: 10.5px;
    color: var(--subtext);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.plogo.dashed {
    border-style: dashed;
    background: transparent;
    filter: none !important;
}

.plogo.dashed .plogo-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--subtext);
}

.partner-strip {
    background: var(--secondary-lt);
    border: 1px solid rgba(59, 130, 246, .18);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ps-text strong {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.ps-text p {
    font-size: 14.5px;
    color: var(--subtext);
}

.final-cta {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.final-cta.section-pad {
    padding-top: calc(var(--section-py) * .5);
    padding-bottom: calc(var(--section-py) * .5);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 70% at 12% 55%, rgba(59, 130, 246, .1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 88% 30%, rgba(34, 142, 43, .12) 0%, transparent 55%);
}

.cta-wrap {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    padding: 58px 24px 50px;
}

.cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image:
        linear-gradient(rgba(15, 23, 42, .065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .065) 1px, transparent 1px);
    background-size: 64px 64px;
}

.cta-wrap .eyebrow {
    color: #228E2B;
    justify-content: center;
    display: flex;
}

.cta-wrap .eyebrow::before {
    background: #228E2B;
    display: block;
}

.cta-wrap h2 {
    color: var(--text);
    margin: 0 0 16px;
}

.cta-wrap h2 .hi {
    color: var(--primary);
}

.cta-wrap .lead {
    color: var(--subtext);
    margin-bottom: 26px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

footer {
    background: var(--bg-soft);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.footer-brand-col .logo {
    margin-bottom: 16px;
}

.footer-brand-col .logo .logo-text {
    color: var(--text);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.footer-logo-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.footer-logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-logo-word {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-name {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.6px;
    color: var(--text);
}

.footer-logo-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--subtext);
}

.footer-tagline {
    font-size: 14px;
    color: var(--subtext);
    line-height: 1.75;
    max-width: 255px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.fsoc {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-dark);
    border: 1px solid var(--border);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, transform .18s;
}

.fsoc:hover {
    background: var(--border);
    transform: translateY(-2px);
}

.fsoc svg {
    width: 16px;
    height: 16px;
    fill: var(--text);
    display: block;
}

.footer-col-head {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--subtext);
    margin-bottom: 12px;
    transition: color .18s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: var(--subtext);
}

.fci {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fci svg {
    width: 15px;
    height: 15px;
    stroke: var(--text);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, .5);
    transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .6);
}

@media (max-width: 1100px) {
    .container {
        padding: 0 28px;
    }

    .top-social-wrap,
    .header-wrap {
        padding: 0 28px;
    }

    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-py: 72px;
    }

    #site-header {
        height: 96px;
    }

    .top-social-bar {
        display: none;
    }

    .nav-links,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        justify-content: end;
    }

    .hero {
        padding: 120px 0 72px;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hs-divider {
        display: none;
    }

    .hs-item {
        flex: none;
        min-width: 80px;
    }

    .what-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .what-content {
        text-align: center;
    }

    .what-content .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        text-align: center;
    }

    .join-layout {
        grid-template-columns: 4fr 5fr;
        gap: 24px;
    }

    .join-cards {
        grid-template-columns: 1fr 1fr;
    }

    .join-form-wrap {
        padding: 28px 24px 32px;
    }

    .jf-row {
        grid-template-columns: 1fr;
    }

    .jf-check-grid {
        grid-template-columns: 1fr;
    }

    .why-heading-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-heading-left,
    .why-heading-copy {
        text-align: center;
    }

    .why-heading-left h2,
    .why-heading-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .why-body {
        flex-direction: column;
        align-items: center;
    }

    .why-feature {
        width: 100%;
        max-width: 500px;
    }

    .why-feature-title {
        max-width: 100%;
    }

    .why-items {
        grid-template-columns: 1fr 1fr;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wstat {
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .prog-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .programs-landing,
    .programs-band {
        scroll-margin-top: 104px;
    }

    .programs-hero {
        min-height: 620px;
        padding: 116px 0 70px;
    }

    .programs-hero-stats,
    .programs-card-grid,
    .programs-band-head,
    .programs-method-grid,
    .programs-stories-grid {
        grid-template-columns: 1fr;
    }

    .programs-hero-stats {
        margin-top: 0;
    }

    .programs-band {
        padding: 72px 0;
    }

    .programs-method-media {
        min-height: 360px;
    }

    .programs-stories-grid {
        gap: 16px;
    }

    .impact-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .istrip-item:nth-child(2) {
        border-right: none;
    }

    .istrip-item:nth-child(3) {
        border-right: 1px solid var(--border);
        border-top: 1px solid var(--border);
    }

    .istrip-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .impact-body {
        grid-template-columns: 1fr;
    }

    .impact-cards-col {
        height: auto;
    }

    .isl-stage {
        height: 420px;
    }

    .isl-card[data-state="active"] {
        width: 50%;
    }

    .isl-card[data-state="prev"] {
        width: 50%;
        transform: translateX(-52%) scale(.88);
        opacity: .38;
    }

    .isl-card[data-state="next"] {
        width: 50%;
        transform: translateX(52%) scale(.88);
        opacity: .38;
    }

    .isl-content {
        padding: 20px 22px 24px;
    }

    .isl-prev {
        left: 8px;
    }

    .isl-next {
        right: 8px;
    }

    .story-shell {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin: 0 auto;
    }

    .story-stage {
        min-height: 0;
    }

    .story-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .village-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .updates-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .updates-card {
        grid-column: auto;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-body {
        padding: 18px 18px 20px;
    }

    .blog-title {
        font-size: 14.5px;
    }

    .cta-wrap {
        padding: 42px 36px;
        border-radius: 28px;
    }

    .partner-strip {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-copy {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .header-wrap {
        padding: 0 20px;
    }

    h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .lead {
        font-size: 15px;
        line-height: 1.58;
    }

    .hero {
        padding: 112px 0 64px;
    }

    .trusted-clients {
        padding: 24px 0 42px;
    }

    .trusted-head {
        align-items: center;
        text-align: center;
        margin-bottom: 18px;
    }

    .trusted-head h2 {
        font-size: 28px;
        letter-spacing: -.8px;
    }

    .hero-badge {
        max-width: 100%;
        padding: 7px 14px;
    }

    .badge-text {
        font-size: 12px;
    }

    .what-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .what-content {
        display: contents;
    }

    .what-content .eyebrow {
        order: 1;
        text-align: center;
        justify-content: center;
    }

    .what-content h2 {
        order: 2;
        text-align: center;
        margin-bottom: 8px;
    }

    .what-desc {
        order: 3;
        text-align: center;
        margin-bottom: 16px;
    }

    .bullet-list {
        order: 4;
    }

    .what-img-col {
        order: 5;
        width: 100%;
    }

    .bullet-item {
        text-align: left;
    }

    .what-cta {
        order: 6;
        margin-top: 2px;
    }

    .why-section {
        margin-top: 36px;
    }

    .join-section.section-pad {
        padding-top: 30px;
    }

    .join-left-head h3 {
        font-size: 24px;
        line-height: 1.18;
    }

    .jf-submit-row .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .hero-title {
        font-size: 20px;
        line-height: 1.12;
        letter-spacing: -1px;
        max-width: 100%;
        text-align: center;
    }

    .hero-copy {
        text-align: center;
        padding-top: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .why-feature {
        padding: 24px;
    }

    .why-feature-num {
        font-size: 54px;
    }

    .why-feature-title {
        font-size: 24px;
        max-width: 100%;
    }

    .why-feature-media img {
        height: 200px;
    }

    .why-items,
    .why-stats {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: 0;
    }

    .why-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .final-cta.section-pad {
        padding-top: 38px;
    }

    .cta-wrap {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .programs-hero {
        min-height: 560px;
        padding: 116px 0 58px;
    }

    .programs-kicker {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .programs-hero h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .programs-hero-actions {
        flex-direction: column;
    }

    .programs-hero-actions .btn,
    .programs-subnav a {
        width: 100%;
        justify-content: center;
    }

    .programs-stat {
        min-height: 0;
        padding: 22px;
    }

    .programs-band {
        padding: 58px 0;
    }

    .programs-band-head {
        gap: 14px;
        margin-bottom: 24px;
    }

    .programs-info-card {
        min-height: 220px;
        padding: 22px;
    }

    .programs-method-media {
        min-height: 280px;
    }

    .programs-story-feature {
        min-height: 420px;
        padding: 24px;
    }

    .story-shell {
        gap: 18px;
        display: flex;
        flex-direction: column;
    }

    .story-list {
        order: 1;
    }

    .story-stage {
        order: 2;
    }

    .story-stage {
        padding: 24px 20px;
        min-height: 0;
    }

    .story-stage-top {
        margin-bottom: 18px;
    }

    .story-stage-tag {
        font-size: 10.5px;
        letter-spacing: 1px;
    }

    .story-quote-mark {
        font-size: 48px;
    }

    .story-quote {
        font-size: 22px;
        line-height: 1.52;
    }

    .story-subquote {
        font-size: 14px;
        line-height: 1.75;
        max-width: 100%;
    }

    .story-stage-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .story-list {
        grid-template-columns: 1fr;
    }

    .story-item {
        min-height: 72px;
        padding: 14px 16px;
    }

    .village-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .updates-section {
        padding: 28px 0 64px;
    }

    .test-header {
        margin-bottom: 28px;
    }

    .updates-head {
        margin-bottom: 24px;
    }

    .updates-body {
        padding: 18px 18px 20px;
    }

    .updates-title {
        font-size: 16px;
    }

    .updates-desc {
        font-size: 14px;
    }

    .blog-section {
        padding: 40px 0 64px;
    }

    .stories-section {
        padding-bottom: 20px;
    }

    .village-section.section-pad {
        padding-top: 44px;
    }

    .blog-head {
        margin-bottom: 24px;
    }

    .blog-body {
        padding: 16px 16px 18px;
    }

    .blog-title {
        font-size: 16px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 1.32;
    }

    .village-body {
        padding: 20px 20px 22px;
    }

    .village-title {
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: -.3px;
    }

    .village-excerpt {
        font-size: 14px;
        line-height: 1.72;
    }

    .hero-title .hi-line {
        white-space: nowrap;
    }

    .hero-sub {
        max-width: 100%;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-btns .btn .arrow {
        display: none;
    }

    .join-layout {
        grid-template-columns: 1fr;
    }

    .join-cards {
        grid-template-columns: 1fr;
    }

    .join-stats-row {
        flex-direction: column;
    }

    .join-stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        padding-top: 24px;
        margin-top: 0;
    }

    .hs-divider {
        display: none;
    }

    .hs-item,
    .hs-item:first-child {
        min-width: 0;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .hs-num {
        font-size: 26px;
    }

    .hs-label {
        font-size: 12px;
    }

    .what-cta .btn,
    .impact-cta-wrap .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .isl-stage {
        height: 390px;
    }

    .isl-card[data-state="active"] {
        width: 88%;
    }

    .isl-card[data-state="prev"] {
        width: 88%;
        transform: translateX(0) scale(.9);
        opacity: 0;
    }

    .isl-card[data-state="next"] {
        width: 88%;
        transform: translateX(0) scale(.9);
        opacity: 0;
    }

    .isl-desc {
        display: none;
    }

    .why-items {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .wa-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
        font-size: 24px;
    }

    .mobile-nav {
        top: 96px;
        padding: 14px 20px 20px;
    }

    .mobile-nav a {
        font-size: 15px;
        padding: 12px 0;
    }

    .mobile-nav-btns {
        margin-top: 14px;
        padding-top: 12px;
    }

    .mobile-nav-btns .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .header-wrap {
        padding: 0 16px;
    }

    .lead {
        font-size: 14.5px;
        line-height: 1.52;
    }

    .cta-wrap {
        padding: 30px 18px;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: -.8px;
    }

    .hero-btns {
        margin-bottom: 36px;
    }

    .hero-stats {
        gap: 16px 10px;
    }

    .hs-num {
        font-size: 24px;
    }

    .mobile-nav {
        top: 96px;
        padding: 12px 16px 16px;
    }

    .mobile-nav a {
        font-size: 14px;
        padding: 11px 0;
    }

    .mobile-nav-btns {
        gap: 8px;
    }

    .mobile-nav-btns .btn {
        min-height: 46px;
        border-radius: 12px;
    }

    .wa-float {
        width: 48px;
        height: 48px;
        right: 12px;
        bottom: 12px;
        font-size: 22px;
    }
}

/* Partner testimonials page */
.partner-page-wrap {
    padding: 0 0 84px;
    background: var(--bg);
}

.partner-container {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

.partner-hero {
    min-height: 440px;
    border-radius: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 48px 20px;
    background:
        linear-gradient(180deg, rgba(2, 10, 9, .2) 0%, rgba(2, 10, 9, .75) 100%),
        radial-gradient(circle at 20% 10%, rgba(24, 125, 56, .22), transparent 42%),
        url('program-2.jpg') center/cover no-repeat;
    border: 1px solid var(--border);
    border-top: 0;
    margin-top: 120px;
}

.partner-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    margin: 0 0 32px;
    color: #fff;
}

.section {
    padding: 74px 0 0;
}

.section-title {
    text-align: center;
    font-size: clamp(34px, 4vw, 36px);
    margin: 18px 0 40px;
}

.section-sub {
    text-align: center;
    color: var(--subtext);
    max-width: 760px;
    margin: 0 auto 56px;
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 28px;
    align-items: stretch;
}

.what-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.what-card {
    background: transparent;
    padding: 8px 4px;
}

.what-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
}

.what-card p {
    margin: 0;
    color: var(--subtext);
    line-height: 1.65;
    font-size: 15px;
}

.what-image,
.how-image {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.what-image img,
.how-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.how-shell {
    margin-top: 0;
    padding: 0 28px 28px;
    background: transparent;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg);
}

.step .num {
    color: #26b353;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 10px;
}

.step h4 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.step p {
    margin: 0;
    color: var(--subtext);
    line-height: 1.6;
    font-size: 15px;
}

.partner-page-wrap .final-cta {
    margin: 56px auto 0;
    max-width: 980px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    padding: 58px 24px 50px;
    text-align: center;
}

.partner-page-wrap .final-cta h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 3.3vw, 56px);
    line-height: 1.1;
}

.partner-page-wrap .final-cta h2 span {
    color: #27b051;
}

.partner-page-wrap .final-cta p {
    margin: 0 auto 26px;
    max-width: 860px;
    color: var(--subtext);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.7;
}

.partner-page-wrap .final-cta .btn {
    min-width: 168px;
    min-height: 52px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(20, 130, 52, .18);
}

.partner-page-wrap .final-cta::before {
    content: none !important;
    display: none !important;
}

@media (max-width: 768px) {
    .partner-page-wrap .final-cta {
        border-radius: 20px;
        padding: 40px 18px 34px;
    }

    .partner-page-wrap .final-cta p {
        line-height: 1.6;
    }
}

@media (max-width: 1080px) {

    .what-grid,
    .how-grid {
        grid-template-columns: 1fr;
    }

    .what-cards {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   LEADERSHIP TEAM SECTION
   ============================================= */

.team-section {
    background: var(--bg-soft);
}

.team-header {
    text-align: center;
    margin-bottom: 56px;
}

.team-header h2 {
    margin-bottom: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1E7729 0%, #0D9488 100%);
    position: relative;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-initials {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -1px;
    user-select: none;
}

.team-card-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.team-card-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.team-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap .18s ease;
}

.team-card:hover .team-card-link {
    gap: 10px;
}

.team-card-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #0A66C2;
    color: #fff;
    flex-shrink: 0;
    transition: transform .18s ease, box-shadow .18s ease;
    text-decoration: none;
}

.team-card-linkedin:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(10, 102, 194, .4);
}

.team-card-linkedin svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

@media (max-width: 960px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* =============================================
   TEAM MEMBER PROFILE PAGE
   ============================================= */

.team-profile-hero {
    background: linear-gradient(180deg, rgba(2, 10, 9, .15) 0%, rgba(2, 10, 9, .7) 100%);
    padding: 80px 0 64px;
    margin-top: 95px;
    position: relative;
    overflow: hidden;
}

.team-profile-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 119, 41, .18) 0%, rgba(13, 148, 136, .12) 100%);
    z-index: 0;
}

.team-profile-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.team-profile-info {
    text-align: center;
}

.team-profile-breadcrumb {
    justify-content: center;
}

.team-profile-photo-wrap {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1E7729 0%, #0D9488 100%);
    box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.team-profile-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-profile-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-profile-photo-placeholder .team-card-initials {
    font-size: 56px;
}

.team-profile-info {
    color: #fff;
}

.team-profile-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-weight: 500;
}

.team-profile-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color .15s;
}

.team-profile-breadcrumb a:hover {
    color: #fff;
}

.team-profile-breadcrumb span {
    opacity: 0.5;
}

.team-profile-name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.team-profile-title {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.team-profile-body {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

.team-profile-bio {
    max-width: 760px;
    margin: 0 auto;
}

.team-profile-bio h2 {
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 20px;
    color: var(--text);
}

.team-profile-bio p {
    color: var(--subtext);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-profile-bio p:last-child {
    margin-bottom: 0;
}

.team-profile-back {
    max-width: 760px;
    margin: 48px auto 0;
}

@media (max-width: 700px) {
    .team-profile-hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 20px;
    }

    .team-profile-photo-wrap {
        width: 140px;
        height: 140px;
    }

    .team-profile-body {
        padding: 40px 20px;
    }
}
