:root {
    --home-shell: #edf4ee;
    --home-surface: rgba(255,255,255,0.86);
    --home-border: rgba(16,43,28,0.08);
    --home-copy: #4e5f56;
    --home-title: #102b1c;
    --home-accent: #78c02d;
    --home-accent-deep: #0d5b34;
    --home-shadow: 0 24px 60px rgba(16,43,28,0.08);
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes pulseGlow {
    0%,100% { box-shadow:0 0 0 0 rgba(120,192,45,0.22); }
    50%      { box-shadow:0 0 0 14px rgba(120,192,45,0); }
}

main {
    background:
        radial-gradient(circle at top left, rgba(120,192,45,0.13), transparent 28%),
        linear-gradient(180deg, #f5faf6 0%, var(--home-shell) 100%);
}

.home-flow {
    max-width: 1240px;
    margin: 1rem auto 0;
    padding: 0 1.25rem 2.5rem;
}

/* ── SECTION BASE ── */
.section {
    padding: 3.5rem;
    margin: 0 auto 1.5rem;
    border-radius: 36px;
    border: 1px solid var(--home-border);
    backdrop-filter: blur(18px);
    box-shadow: var(--home-shadow);
    max-width: 1200px;
    animation: fadeUp 0.55s ease both;
}

.section--about   { background: linear-gradient(135deg,rgba(255,255,255,0.95),rgba(241,247,242,0.95)); }
.section--gallery { background: linear-gradient(135deg,rgba(255,255,255,0.95),rgba(241,247,242,0.95)); }
.section--mission { background: radial-gradient(circle at top left,rgba(120,192,45,0.1),transparent 24%), linear-gradient(135deg,rgba(248,252,247,0.97),rgba(255,255,255,0.99)); }
.section--policy  { background: linear-gradient(135deg,rgba(249,252,249,0.95),rgba(255,255,255,0.98)); }
.section--faq     { background: radial-gradient(circle at right top,rgba(120,192,45,0.1),transparent 24%), linear-gradient(135deg,rgba(250,252,248,0.97),rgba(255,255,255,0.99)); }
.section--impact  {
    background: linear-gradient(135deg,#0d5b34,#102b1c);
    position: relative;
    overflow: hidden;
}
.section--impact::before {
    content:'';
    position:absolute; inset:0;
    background: radial-gradient(circle at 80% 20%,rgba(120,192,45,0.18),transparent 55%);
    pointer-events:none;
}

/* ── HEADER ── */
.section__header { max-width:760px; margin-bottom:2.5rem; }
.section__header--split {
    max-width:100%;
    display:grid;
    grid-template-columns: minmax(0,1.25fr) minmax(280px,0.75fr);
    gap:1.5rem;
    align-items:end;
}

.section__eyebrow {
    display:inline-flex;
    align-items:center;
    gap:0.45rem;
    padding:0.45rem 1rem;
    border-radius:999px;
    background:rgba(120,192,45,0.12);
    border:1px solid rgba(120,192,45,0.2);
    color:var(--home-accent-deep);
    font-size:0.74rem;
    font-weight:800;
    letter-spacing:0.2em;
    text-transform:uppercase;
    margin-bottom:1rem;
}

.section__title {
    font-size:clamp(2rem,3vw,3.2rem);
    line-height:1.05;
    font-weight:900;
    margin:0;
    color:var(--home-title);
    letter-spacing:-0.04em;
}

.section__subtitle {
    font-size:1rem;
    line-height:1.75;
    margin:0;
    color:var(--home-copy);
}

/* ── ABOUT ── */
.about__content {
    display:grid;
    grid-template-columns: minmax(0,1.1fr) minmax(320px,0.9fr);
    gap:3rem;
    align-items:center;
}

.about__text { font-size:1.05rem; line-height:1.85; color:var(--home-copy); }
.about__text .section__eyebrow { display:inline-flex; }
.about__text .section__title   { margin-bottom:1.5rem; }
.about__lead p { margin:0 0 1rem; }

.about__highlights {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1rem;
    margin-top:1.8rem;
}

.about__highlight {
    padding:1.3rem;
    border-radius:22px;
    background:rgba(255,255,255,0.85);
    border:1px solid rgba(120,192,45,0.15);
    transition:transform 280ms cubic-bezier(.22,.68,0,1.2), box-shadow 280ms ease, border-color 280ms ease;
    cursor:default;
}
.about__highlight:hover {
    transform:translateY(-7px) scale(1.03);
    box-shadow:0 20px 40px rgba(16,43,28,0.1);
    border-color:rgba(120,192,45,0.35);
}
.about__highlight-number {
    display:block;
    font-size:1.5rem;
    font-weight:900;
    color:var(--home-accent-deep);
    margin-bottom:0.35rem;
}
.about__highlight-label { display:block; font-size:0.9rem; line-height:1.55; }

.about__visual { position:relative; }
.about__image {
    width:100%;
    height:620px;
    object-fit:cover;
    object-position:center top;
    border-radius:32px;
    box-shadow:0 30px 70px rgba(16,43,28,0.18);
    transition:transform 400ms ease, box-shadow 400ms ease;
    display:block;
}
.about__visual:hover .about__image {
    transform:scale(1.02);
    box-shadow:0 40px 80px rgba(16,43,28,0.22);
}
.about__visual-badge {
    position:absolute;
    bottom:1.25rem; left:1.25rem;
    display:inline-flex;
    align-items:center;
    gap:0.6rem;
    padding:0.7rem 1.1rem;
    border-radius:999px;
    background:rgba(13,91,52,0.88);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:0.88rem;
    font-weight:700;
    border:1px solid rgba(255,255,255,0.15);
}
.about__visual-badge i { color:#b9ec87; }

/* ── IMPACT ── */
.impact__header {
    text-align:center;
    max-width:720px;
    margin:0 auto 2.5rem;
}
.impact__header .section__eyebrow {
    background:rgba(255,255,255,0.12);
    color:#b9ec87;
    border-color:rgba(255,255,255,0.18);
}
.impact__title {
    margin:0;
    font-size:clamp(1.9rem,2.5vw,2.8rem);
    line-height:1.05;
    font-weight:900;
    letter-spacing:-0.04em;
    color:#fff;
}
.impact__grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1.25rem;
    position:relative;
    z-index:1;
}
.impact__card {
    position:relative;
    padding:2.2rem 1.25rem 1.75rem;
    text-align:center;
    border-radius:28px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    overflow:hidden;
    transition:transform 300ms cubic-bezier(.22,.68,0,1.2), box-shadow 300ms ease, background 300ms ease, border-color 300ms ease;
    cursor:default;
}
.impact__card-glow {
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(120,192,45,0.18),transparent 60%);
    opacity:0;
    transition:opacity 300ms ease;
}
.impact__card::after {
    content:'';
    position:absolute;
    bottom:0; left:0; right:0;
    height:3px;
    background:linear-gradient(90deg,#78c02d,#b9ec87,#78c02d);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 350ms ease;
}
.impact__card:hover {
    transform:translateY(-14px) scale(1.03);
    background:rgba(255,255,255,0.1);
    border-color:rgba(120,192,45,0.4);
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
}
.impact__card:hover .impact__card-glow { opacity:1; }
.impact__card:hover::after { transform:scaleX(1); }

.impact__number,
.impact__label,
.impact__description { position:relative; z-index:1; }

.impact__number {
    display:block;
    font-size:clamp(2.8rem,4.8vw,4.6rem);
    line-height:0.92;
    font-weight:900;
    letter-spacing:-0.08em;
    color:#8ed432;
    text-shadow:0 10px 24px rgba(142,212,50,0.22);
    margin-bottom:0.6rem;
    transition:transform 300ms ease, color 300ms ease;
}
.impact__card:hover .impact__number { transform:scale(1.08); color:#b9ec87; }
.impact__label {
    margin:0 0 0.5rem;
    font-size:1.4rem;
    font-weight:900;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.9);
}
.impact__description {
    margin:0 auto;
    max-width:180px;
    font-size:0.95rem;
    line-height:1.5;
    color:rgba(255,255,255,0.62);
}

/* ── PROGRAMS ── */
.mission__list {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1rem;
}
.mission__item {
    position:relative;
    display:flex;
    align-items:center;
    gap:1.1rem;
    padding:1.6rem 1.4rem;
    border-radius:26px;
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(120,192,45,0.12);
    box-shadow:0 8px 24px rgba(16,43,28,0.05);
    overflow:hidden;
    transition:transform 300ms cubic-bezier(.22,.68,0,1.2), box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
    cursor:default;
}
.mission__item::before {
    content:'';
    position:absolute; top:0; left:0; right:0;
    height:3px;
    background:linear-gradient(90deg,#78c02d,#0d5b34);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 350ms ease;
}
.mission__item:hover {
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 24px 50px rgba(16,43,28,0.12);
    border-color:rgba(120,192,45,0.3);
    background:rgba(255,255,255,0.96);
}
.mission__item:hover::before { transform:scaleX(1); }

.mission__icon {
    width:62px; height:62px;
    flex:0 0 62px;
    display:grid;
    place-items:center;
    border-radius:20px;
    background:linear-gradient(135deg,rgba(120,192,45,0.15),rgba(120,192,45,0.05));
    border:1px solid rgba(120,192,45,0.22);
    color:#78c02d;
    font-size:1.6rem;
    box-shadow:0 8px 20px rgba(120,192,45,0.1);
    transition:transform 300ms cubic-bezier(.22,.68,0,1.4), background 300ms ease, box-shadow 300ms ease;
}
.mission__item:hover .mission__icon {
    transform:rotate(-8deg) scale(1.12);
    background:linear-gradient(135deg,rgba(120,192,45,0.28),rgba(120,192,45,0.1));
    box-shadow:0 16px 32px rgba(120,192,45,0.22);
    animation:pulseGlow 1.2s ease infinite;
}
.mission__body { flex:1; min-width:0; }
.mission__title {
    font-size:1.1rem;
    font-weight:800;
    line-height:1.25;
    margin:0 0 0.3rem;
    color:#102b1c;
}
.mission__desc {
    font-size:0.88rem;
    line-height:1.55;
    color:var(--home-copy);
    margin:0;
}
.mission__arrow {
    width:34px; height:34px;
    flex:0 0 34px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(120,192,45,0.1);
    color:#78c02d;
    font-size:0.8rem;
    transition:transform 280ms ease, background 280ms ease;
}
.mission__item:hover .mission__arrow {
    transform:translateX(4px);
    background:rgba(120,192,45,0.2);
}

/* ── GALLERY ── */
.gallery__grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1rem;
    grid-auto-rows:220px;
}
.gallery__item {
    position:relative;
    overflow:hidden;
    border-radius:26px;
    box-shadow:0 16px 36px rgba(16,43,28,0.12);
    transition:transform 300ms cubic-bezier(.22,.68,0,1.2), box-shadow 300ms ease;
}
.gallery__item--large { grid-column:span 2; grid-row:span 2; }
.gallery__item:hover {
    transform:translateY(-6px) scale(1.01);
    box-shadow:0 28px 56px rgba(16,43,28,0.18);
}
.gallery__image {
    width:100%; height:100%;
    object-fit:cover;
    transition:transform 400ms ease;
}
.gallery__image--contain {
    object-fit:contain;
    object-position:center;
    background:#f7fbf8;
    padding:0.85rem;
}
.gallery__item:hover .gallery__image { transform:scale(1.08); }
.gallery__overlay {
    position:absolute;
    inset:auto 0 0;
    background:linear-gradient(180deg,transparent 0%,rgba(16,43,28,0.88) 100%);
    color:#fff;
    padding:1.2rem 1.4rem;
    transform:translateY(10px);
    opacity:0;
    transition:opacity 300ms ease, transform 300ms ease;
}
.gallery__item:hover .gallery__overlay { opacity:1; transform:translateY(0); }
.gallery__tag {
    display:inline-flex;
    padding:0.25rem 0.65rem;
    border-radius:999px;
    background:rgba(120,192,45,0.8);
    font-size:0.7rem;
    font-weight:800;
    letter-spacing:0.1em;
    text-transform:uppercase;
    margin-bottom:0.4rem;
}
.gallery__caption { font-size:1rem; font-weight:700; margin:0; }

/* ── POLICY ── */
.policy__list {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1.25rem;
}
.policy__item {
    display:flex;
    gap:1.1rem;
    align-items:flex-start;
    background:rgba(255,255,255,0.82);
    border-radius:26px;
    padding:1.75rem;
    box-shadow:0 10px 28px rgba(16,43,28,0.06);
    border:1px solid rgba(16,43,28,0.06);
    position:relative;
    overflow:hidden;
    transition:transform 300ms cubic-bezier(.22,.68,0,1.2), box-shadow 300ms ease, border-color 300ms ease;
    cursor:default;
}
.policy__item::before {
    content:'';
    position:absolute; top:0; left:0; right:0;
    height:3px;
    background:linear-gradient(90deg,#78c02d,#0d5b34);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 350ms ease;
}
.policy__item:hover {
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(16,43,28,0.1);
    border-color:rgba(120,192,45,0.25);
}
.policy__item:hover::before { transform:scaleX(1); }
.policy__icon {
    width:48px; height:48px;
    flex:0 0 48px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:rgba(120,192,45,0.1);
    border:1px solid rgba(120,192,45,0.18);
    color:#78c02d;
    font-size:1.2rem;
    transition:transform 280ms ease, background 280ms ease;
}
.policy__item:hover .policy__icon {
    transform:scale(1.1) rotate(-6deg);
    background:rgba(120,192,45,0.18);
}
.policy__title { font-size:1.1rem; font-weight:800; margin:0 0 0.6rem; color:var(--home-title); }
.policy__description { font-size:0.96rem; line-height:1.75; color:var(--home-copy); margin:0; }

/* ── FAQ ── */
.faq {
    display:grid;
    grid-template-columns:minmax(280px,0.85fr) minmax(0,1.15fr);
    gap:1.5rem;
    align-items:start;
}
.faq__intro {
    padding:2rem;
    border-radius:28px;
    border:1px solid rgba(16,43,28,0.08);
    box-shadow:0 18px 40px rgba(16,43,28,0.08);
    background:linear-gradient(160deg,rgba(13,91,52,0.97),rgba(16,43,28,0.97));
    color:#fff;
    position:sticky;
    top:120px;
}
.faq__tag {
    display:inline-flex;
    padding:0.45rem 0.85rem;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    color:rgba(255,255,255,0.9);
    font-size:0.72rem;
    font-weight:800;
    letter-spacing:0.18em;
    text-transform:uppercase;
}
.faq__intro-title {
    margin:1rem 0 0.75rem;
    font-size:clamp(1.6rem,2vw,2.2rem);
    line-height:1.1;
    font-weight:900;
    letter-spacing:-0.04em;
}
.faq__intro-text { margin:0; font-size:0.98rem; line-height:1.75; color:rgba(255,255,255,0.75); }
.faq__cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:1.5rem;
    padding:0.9rem 1.5rem;
    border-radius:999px;
    background:#78c02d;
    color:#fff;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 16px 28px rgba(120,192,45,0.28);
    transition:transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.faq__cta:hover {
    transform:translateY(-3px);
    background:#68ad24;
    box-shadow:0 22px 36px rgba(120,192,45,0.36);
}
.faq__list { display:grid; gap:1rem; }
.faq__item {
    border-radius:28px;
    border:1px solid rgba(16,43,28,0.08);
    box-shadow:0 10px 28px rgba(16,43,28,0.06);
    background:rgba(255,255,255,0.9);
    overflow:hidden;
    transition:box-shadow 280ms ease, border-color 280ms ease;
}
.faq__item:hover {
    box-shadow:0 22px 44px rgba(16,43,28,0.1);
    border-color:rgba(120,192,45,0.2);
}
.faq__question {
    list-style:none;
    cursor:pointer;
    padding:1.4rem 4.25rem 1.4rem 1.4rem;
    font-size:1.05rem;
    font-weight:800;
    line-height:1.5;
    color:var(--home-title);
    position:relative;
    transition:color 220ms ease;
}
.faq__question:hover { color:var(--home-accent-deep); }
.faq__question::-webkit-details-marker { display:none; }
.faq__question::before,
.faq__question::after {
    content:'';
    position:absolute;
    right:1.4rem; top:50%;
    width:14px; height:2px;
    border-radius:999px;
    background:#78c02d;
    transform:translateY(-50%);
    transition:transform 220ms ease, opacity 220ms ease;
}
.faq__question::after { transform:translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__question::after { opacity:0; transform:translateY(-50%) rotate(180deg); }
.faq__answer {
    margin:0;
    padding:0 1.4rem 1.4rem;
    font-size:0.98rem;
    line-height:1.75;
    color:var(--home-copy);
}

/* ── FOOTER ── */
.footer {
    background:
        radial-gradient(circle at top left,rgba(120,192,45,0.18),transparent 28%),
        linear-gradient(180deg,#143222 0%,#102b1c 100%);
    color:#fff;
    padding:4rem 2rem 2rem;
    margin-top:1.5rem;
}
.footer__content { max-width:1200px; margin:0 auto; }
.footer__top {
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(320px,0.9fr);
    gap:2rem;
    align-items:start;
    padding-bottom:2rem;
    border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer__eyebrow {
    display:inline-flex;
    padding:0.45rem 0.85rem;
    border-radius:999px;
    background:rgba(120,192,45,0.16);
    color:#b9ec87;
    font-size:0.74rem;
    font-weight:800;
    letter-spacing:0.18em;
    text-transform:uppercase;
}
.footer__logo {
    font-size:clamp(2rem,3vw,3rem);
    font-weight:900;
    line-height:1.05;
    margin:1rem 0 0.9rem;
    color:#fff;
    letter-spacing:-0.05em;
}
.footer__text { max-width:560px; font-size:1rem; margin:0; line-height:1.8; color:rgba(255,255,255,0.72); }
.footer__social { display:flex; gap:1rem; margin-top:1.5rem; }
.footer__social a {
    color:#fff;
    width:46px; height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    font-size:1rem;
    transition:transform 220ms ease, background 220ms ease, color 220ms ease;
}
.footer__social a:hover { transform:translateY(-3px) scale(1.1); color:#102b1c; background:#b9ec87; }
.footer__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.footer__column {
    padding:1.4rem;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:background 220ms ease, border-color 220ms ease;
}
.footer__column:hover { background:rgba(255,255,255,0.07); border-color:rgba(120,192,45,0.2); }
.footer__heading { margin:0 0 1rem; font-size:1.05rem; font-weight:800; color:#fff; }
.footer__links, .footer__contact-list { display:grid; gap:0.75rem; }
.footer__links a, .footer__contact-item {
    color:rgba(255,255,255,0.72);
    text-decoration:none;
    transition:color 220ms ease, transform 220ms ease;
}
.footer__links a:hover, .footer__contact-item:hover { color:#b9ec87; transform:translateX(5px); }
.footer__contact-item { display:flex; align-items:flex-start; gap:0.75rem; line-height:1.65; }
.footer__contact-item i { width:18px; margin-top:0.25rem; color:#78c02d; }
.footer__bottom { display:flex; justify-content:space-between; gap:1rem; padding-top:1.25rem; align-items:center; }
.footer__copyright, .footer__note { font-size:0.92rem; color:rgba(255,255,255,0.55); margin:0; }

/* ── RESPONSIVE ── */
@media (max-width:768px) {
    .home-flow { padding:0 0.85rem 2rem; }
    .section { padding:1.75rem; border-radius:26px; }
    .section__header--split,
    .about__content,
    .policy__list,
    .faq,
    .footer__top,
    .footer__grid { grid-template-columns:1fr; }
    .section__title { font-size:1.9rem; }
    .about__highlights,
    .impact__grid,
    .mission__list { grid-template-columns:1fr; }
    .gallery__grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
    .gallery__item--large { grid-column:span 2; grid-row:span 1; }
    .about__image { height:380px; }
    .faq__intro { position:static; }
    .footer { padding:3rem 1rem 1.5rem; }
    .footer__column { padding:1.2rem; }
    .footer__bottom { flex-direction:column; align-items:flex-start; }
}

/* ── TESTIMONIALS ── */
.section--testimonials {
    background: linear-gradient(135deg, rgba(13,91,52,0.04), rgba(255,255,255,0.98));
}

.testimonials__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials__track {
    display: flex;
    gap: 20px;
    transition: transform 450ms cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.testimonial__card {
    position: relative;
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(120,192,45,0.12);
    box-shadow: 0 12px 32px rgba(16,43,28,0.07);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: box-shadow 300ms ease, border-color 300ms ease;
    cursor: default;
}

.testimonial__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #78c02d, #0d5b34);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms ease;
}

.testimonial__card:hover {
    box-shadow: 0 28px 56px rgba(16,43,28,0.12);
    border-color: rgba(120,192,45,0.28);
}

.testimonial__card:hover::before { transform: scaleX(1); }

.testimonial__card--accent {
    background: linear-gradient(160deg, #0d5b34, #102b1c);
    border-color: rgba(120,192,45,0.25);
    color: #fff;
}

.testimonial__card--accent .testimonial__text { color: rgba(255,255,255,0.85); }
.testimonial__card--accent .testimonial__name { color: #b9ec87; }
.testimonial__card--accent .testimonial__role { color: rgba(255,255,255,0.6); }
.testimonial__card--accent .testimonial__quote i { color: rgba(120,192,45,0.5); }

.testimonial__quote i {
    font-size: 2rem;
    color: rgba(120,192,45,0.25);
    line-height: 1;
}

.testimonial__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--home-copy);
    margin: 0;
    flex: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16,43,28,0.07);
}

.testimonial__card--accent .testimonial__author { border-top-color: rgba(255,255,255,0.1); }

.testimonial__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(120,192,45,0.12);
    border: 2px solid rgba(120,192,45,0.25);
    display: grid;
    place-items: center;
    color: #78c02d;
    font-size: 1.1rem;
    flex: 0 0 46px;
}

.testimonial__card--accent .testimonial__avatar {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #b9ec87;
}

.testimonial__name {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--home-title);
}

.testimonial__role {
    display: block;
    font-size: 0.82rem;
    color: var(--home-copy);
    margin-top: 0.15rem;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.testimonials__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(120,192,45,0.25);
    background: rgba(255,255,255,0.9);
    color: #78c02d;
    font-size: 0.95rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 4px 14px rgba(16,43,28,0.08);
}

.testimonials__btn:hover {
    transform: scale(1.1);
    background: #78c02d;
    color: #fff;
    box-shadow: 0 8px 22px rgba(120,192,45,0.3);
}

.testimonials__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonials__dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: rgba(120,192,45,0.25);
    border: none;
    cursor: pointer;
    transition: width 280ms ease, background 280ms ease;
    padding: 0;
}

.testimonials__dot.active {
    width: 24px;
    background: #78c02d;
}

/* ── PARTNERS STRIP ── */
.partners__strip {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16,43,28,0.08);
}

.partners__label {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--home-copy);
    opacity: 0.6;
    margin-bottom: 1.25rem;
}

.partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.partners__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(120,192,45,0.15);
    box-shadow: 0 4px 14px rgba(16,43,28,0.05);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--home-title);
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
    cursor: default;
}

.partners__logo i {
    color: #78c02d;
    font-size: 0.95rem;
}

.partners__logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16,43,28,0.1);
    border-color: rgba(120,192,45,0.35);
}

/* ── DONATE CTA ── */
.section--cta {
    background: linear-gradient(135deg, #0d5b34, #102b1c);
    border-color: rgba(120,192,45,0.2);
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(120,192,45,0.2), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(120,192,45,0.12), transparent 40%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(280px,0.7fr);
    gap: 3rem;
    align-items: center;
}

.cta__eyebrow {
    background: rgba(255,255,255,0.12) !important;
    color: #b9ec87 !important;
    border-color: rgba(255,255,255,0.18) !important;
}

.cta__title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 1rem;
}

.cta__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin: 0 0 2rem;
    max-width: 560px;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.cta__btn--primary {
    background: #78c02d;
    color: #fff;
    box-shadow: 0 16px 32px rgba(120,192,45,0.35);
}

.cta__btn--primary:hover {
    transform: translateY(-4px);
    background: #68ad24;
    box-shadow: 0 24px 44px rgba(120,192,45,0.45);
}

.cta__btn--secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta__btn--secondary:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

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

.cta__stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 260ms ease, transform 260ms ease, border-color 260ms ease;
}

.cta__stat:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(6px);
    border-color: rgba(120,192,45,0.3);
}

.cta__stat i {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(120,192,45,0.18);
    color: #b9ec87;
    font-size: 1.1rem;
    flex: 0 0 42px;
}

.cta__stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.cta__stat span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .testimonials__grid { grid-template-columns: 1fr; }
    .cta__inner { grid-template-columns: 1fr; gap: 2rem; }
    .cta__actions { flex-direction: column; }
    .cta__btn { justify-content: center; }
}
