.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9999;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: ripple 2s infinite;
    z-index: -1;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.world-dots {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.6) sepia(1) hue-rotate(90deg) saturate(300%);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    transform: scale(2.5);
    /* visually bigger */
    transform-origin: left center;
}

/* POPUP STYLES */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.25rem;
    width: 480px;
    max-width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popupFade 0.4s ease;
}

@keyframes popupFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-box h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 0.7rem;
    margin: 0.5rem 0;
    border-radius: 0.6rem;
    border: 1px solid var(--border);
    background: var(--cream);
}

.popup-btn {
    width: 100%;
    padding: 0.9rem;
    border-radius: 50px;
    background: var(--green);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
}

.popup-btn:hover {
    background: var(--green-dark);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

:root {
    --green: #4a8c6f;
    --green-dark: #2e6650;
    --green-light: #6aad8e;
    --green-pale: #e8f4ee;
    --green-mist: #f2faf5;
    --dot: #b0c8bb;
    --text: #1a2e24;
    --text-mid: #4a6357;
    --text-light: #8aab98;
    --white: #ffffff;
    --cream: #fafdf8;
    --border: #d4e8dc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    padding-top: 100px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    background: rgba(250, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(74, 140, 111, .12);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--green);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--green-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .2s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--green);
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    transition: background .2s, transform .2s;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--green);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, var(--green-pale) 0%, var(--cream) 70%);
}

.world-dots {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    opacity: 0.18;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green-pale);
    border: 1px solid var(--border);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '●';
    font-size: .5rem;
    color: var(--green);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 1.4rem;
}

h1 em {
    font-style: italic;
    color: var(--green);
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 2.4rem;
}

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

.btn-primary {
    background: var(--green);
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: all .25s;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(74, 140, 111, .35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74, 140, 111, .4);
}

.btn-outline {
    border: 2px solid var(--green);
    color: var(--green);
    padding: .85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: all .25s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat-item h3 {
    font-family: 'Alkatra', sans-serif;
    font-size: 2rem;
    color: var(--green);
    font-weight: 700;
}

.stat-item p {
    font-size: .8rem;
    color: var(--text-mid);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── SECTION BASE ── */
section {
    padding: 5rem 4rem;
}

.section-tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .75rem;
    display: block;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: var(--text);
}

.section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    margin-top: .75rem;
}

/* ── ABOUT ── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: var(--green);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.about-card-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.about-card-main p {
    font-size: .9rem;
    line-height: 1.7;
    opacity: .88;
}

.about-card-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.float-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.float-text strong {
    display: block;
    font-weight: 700;
    color: var(--text);
}

.float-text span {
    font-size: .8rem;
    color: var(--text-light);
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.pillar {
    background: var(--green-mist);
    border-radius: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--border);
}

.pillar-icon {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.pillar h4 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--green-dark);
}

.pillar p {
    font-size: .78rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ── SERVICES ── */
.services {
    background: var(--cream);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.services-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: .5rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

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

.service-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 140, 111, .12);
    border-color: var(--green-light);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text);
}

.service-card p {
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    transition: gap .2s;
}

.service-link:hover {
    gap: .6rem;
}

/* ── FUNDING ── */
.funding {
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.funding::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.funding-inner {
    position: relative;
    z-index: 2;
}

.funding h2,
.funding .section-tag {
    color: #fff;
}

.funding .section-tag {
    opacity: .7;
}

.funding .section-intro {
    color: rgba(255, 255, 255, .75);
}

.funding-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.funding-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 1.25rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all .3s;
}

.funding-card:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-4px);
}

.fund-amount {
    font-family: 'Alkatra', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .3rem;
}

.fund-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 1.2rem;
}

.fund-avail {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background .2s;
}

.fund-avail:hover {
    background: rgba(255, 255, 255, .35);
}

/* ── WHY CHOOSE ── */
.why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    transition: all .25s;
}

.reason:hover {
    border-color: var(--green-light);
    background: var(--green-mist);
}

.reason-num {
    min-width: 42px;
    height: 42px;
    background: var(--green-pale);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--green);
}

.reason h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.reason p {
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-big-card {
    background: var(--green-pale);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
}

.why-big-card .big-num {
    font-family: 'Alkatra', sans-serif;
    font-size: 4rem;
    color: var(--green);
    font-weight: 700;
    line-height: 1;
}

.why-big-card p {
    color: var(--text-mid);
    font-size: .9rem;
    margin-top: .5rem;
}

.why-small-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.why-small-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
}

.why-small-card .num {
    font-family: 'Alkatra', sans-serif;
    font-size: 1.8rem;
    color: var(--green);
    font-weight: 700;
}

.why-small-card p {
    font-size: .78rem;
    color: var(--text-mid);
    margin-top: .25rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--cream);
}

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

.testi-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.testi-stars {
    color: #f4b942;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
}

.testi-author strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
}

.testi-author span {
    font-size: .75rem;
    color: var(--text-light);
}

/* ── FAQ ── */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
}

.faq-q {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .9rem;
    background: var(--cream);
    transition: background .2s;
}

.faq-q:hover {
    background: var(--green-pale);
}

.faq-q span {
    color: var(--green);
    font-size: 1.2rem;
}

.faq-a {
    padding: 0 1.5rem;
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s, padding .3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 1rem 1.5rem 1.5rem;
}

.faq-item.open .faq-q {
    background: var(--green-pale);
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
    display: inline-block;
}

/* ── CONTACT ── */
.contact {
    background: var(--green-mist);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-detail strong {
    display: block;
    font-size: .8rem;
    color: var(--text-light);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.contact-detail span {
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(74, 140, 111, .08);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: .4rem;
    letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .75rem;
    border: 1.5px solid var(--border);
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--text);
    transition: border-color .2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    padding: .9rem;
    border-radius: 50px;
    background: var(--green);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(74, 140, 111, .3);
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, .7);
    padding: 4rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--green-light);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: .65rem;
}

.footer-col a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
}

.disclaimer {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    max-width: 700px;
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
/* Tablet & Small Laptops */
@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 253, 248, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 1rem;
        padding: 2rem 0;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .nav-cta {
        position: fixed;
        right: -100%;
        bottom: 20px;
        width: calc(100% - 3rem);
        text-align: center;
        transition: 0.3s;
    }

    .nav-cta.active {
        right: 1.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .about-grid,
    .why-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid,
    .funding-cards,
    .testi-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-card-float {
        display: none;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Phones */
@media (max-width: 640px) {
    * {
        max-width: 100vw;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    nav {
        padding: 0.75rem 1rem;
    }

    .nav-logo img {
        height: 50px;
        transform: scale(2);
    }

    .hamburger span {
        width: 22px;
    }

    .nav-links {
        top: 60px;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .nav-links li {
        padding: 0.75rem 0;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        bottom: 15px;
    }

    section {
        padding: 3rem 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

    h1 {
        font-size: clamp(1.6rem, 4vw, 2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .world-dots {
        display: none;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .pillar {
        padding: 1rem;
    }

    .pillar h4 {
        font-size: 0.8rem;
    }

    .pillar p {
        font-size: 0.75rem;
    }

    .services-grid,
    .funding-cards,
    .testi-grid {
        gap: 1rem;
    }

    .service-card,
    .funding-card,
    .testi-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .service-card h3,
    .service-card p {
        font-size: 0.9rem;
    }

    .why-big-card {
        padding: 1.5rem;
    }

    .why-big-card .big-num {
        font-size: 2.5rem;
    }

    .why-small-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reason {
        padding: 1rem;
        gap: 1rem;
    }

    .reason-num {
        min-width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .reason h4 {
        font-size: 0.85rem;
    }

    .reason p {
        font-size: 0.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .faq-q {
        padding: 1rem 1.2rem;
        font-size: 0.85rem;
    }

    .faq-a {
        padding: 0 1.2rem;
        font-size: 0.8rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.8rem;
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .form-submit {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .footer-col a,
    .footer-col p {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .disclaimer {
        font-size: 0.65rem;
        max-width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .popup-box {
        width: 95%;
        padding: 1.5rem;
        max-width: 95vw;
    }

    .popup-box h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .popup-box input,
    .popup-box select,
    .popup-box textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
        margin: 0.4rem 0;
    }

    .popup-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .about-card-main {
        padding: 1.5rem;
    }

    .about-card-main h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .about-card-main p {
        font-size: 0.85rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    nav {
        padding: 0.6rem 0.8rem;
    }

    .nav-logo img {
        height: 40px;
        transform: scale(1.5);
    }

    .hamburger span {
        width: 20px;
        height: 2.5px;
    }

    section {
        padding: 2.5rem 0.8rem;
    }

    .hero {
        padding: 5rem 0.8rem 2.5rem;
    }

    h1 {
        font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    }

    h2 {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.7rem;
    }

    .hero-sub {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .hero-stats {
        margin-top: 2rem;
        padding-top: 1.2rem;
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: 0.8rem;
    }

    .service-card,
    .funding-card,
    .testi-card {
        padding: 1.2rem;
    }

    .why-big-card {
        padding: 1.2rem;
    }

    .why-big-card .big-num {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .contact-form h3 {
        font-size: 1rem;
    }

    footer {
        padding: 1.5rem 0.8rem 1rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 12px;
        right: 12px;
    }

    .popup-box {
        padding: 1.2rem;
    }

    .popup-box h2 {
        font-size: 1rem;
    }
}