*,
*::before,
*::after {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

p,
span,
li,
a {
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

input {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
}

span {
    display: inline-block;
    color: var(--grey);
}

:root {
    --navy: #1b2a4a;
    --navy-soft: #6b7488;
    --orange: #e8734a;
    --orange-dark: #c1543a;
    --cream: #fbf3ea;
    --mint: #dff2e6;
    --mint-text: #2f9e5c;
    --white: #ffffff;
    --grey: #9aa0ac;
    --border: #ece6dc;

    --font-display: "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;

    --container: 1240px;
}

.site-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(10, 15, 10, 0.85);
    width: 90%;
    max-width: 650px;
    backdrop-filter: blur(10px);
    padding: 14px 30px;
    border-radius: 999px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .site-header {
        top: 12px;
        padding: 10px 20px;
        width: 95%;
    }
}

.logo {
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand_group {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    flex-shrink: 0;
}

.site-title {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: flex-end;
}

.site-nav {
    display: flex;
    gap: 30px;
}

@media (max-width: 500px) {
    .site-nav {
        gap: 15px;
        position: sticky;
    }
}

.nav__links {
    color: #cfcfcf;
    font-size: 14px;
    gap: 30px;
    display: flex;
    align-items: center;
}

.site-nav a {
    color: #cfcfcf;
    font-size: 14px;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #ffffff;
}

.dashboard {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 999px;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.dashboard a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

@media (max-width: 600px) {
    .site-header {
        top: 12px;
        padding: 10px 20px;
        width: 95%;
        border-radius: 20px;
    }

    .nav-toggle-label {
        display: flex;
        align-items: center;
        width: 22px;
        height: 18px;
        cursor: pointer;
        position: relative;
        z-index: 101;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: #ffffff;
        height: 2px;
        width: 100%;
        border-radius: 2px;
        position: absolute;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    }

    .nav-toggle-label span::before {
        content: '';
        top: -6px;
    }

    .nav-toggle-label span::after {
        content: '';
        top: 6px;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 15, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        padding: 40px;
        box-sizing: border-box;

        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.4s;
        z-index: 99;
    }

    .nav-toggle:checked~.nav-menu-wrapper {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav__links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .site-nav a {
        font-size: 1.35rem;
        font-weight: 500;
    }

    .dashboard {
        font-size: 0.85rem;
        padding: 12px 30px;
    }
}

@media (max-width: 868px) {
    .site-header {
        top: 16px;
        padding: 12px 24px;
        width: 92%;
        border-radius: 30px;
    }
}

@media (max-width: 600px) {
    .dashboard {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

/* .nav-toggle-label {
    display: flex;
    align-items: center;
    width: 24px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 101;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #ffffff;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.nav-toggle-label span::before {
    content: '';
    top: -7px;
}

.nav-toggle-label span::after {
    content: '';
    top: 7px;
}

.nav-toggle:checked~.nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked~.nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle:checked~.nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 10, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    box-sizing: border-box;

    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.4s;
    z-index: 99;
}

.nav-toggle:checked~.nav-menu-wrapper {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.site-nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.nav__links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.site-nav a {
    font-size: 1.5rem;
    font-weight: 500;
}

.dashboard {
    font-size: 1rem;
    padding: 14px 40px;
} */

.hero {
    background-image: url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    width: 100% !important;
    min-height: 95vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 0 0%;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding-bottom: 60px;
        padding-top: 50px;
    }
}

.hero__content {
    color: var(--grey);
    font-family: var(--font-body);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 45ch;
    padding-top: 240px;
}

@media (max-width: 991px) {
    .hero__content {
        padding-top: 60px;
        max-width: 100%;
    }
}

.hero__text {
    flex: 0 0 50%;
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    flex: 0 0 45%;
    height: 200px;
    padding-top: 100px;
}

@media (max-width: 991px) {
    .hero__text {
        flex: 1 1 auto;
        height: auto;
        padding-top: 0;
    }
}

.hero__buttons {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    margin-top: 20px;
}

.hero__buttons:hover {
    background: var(--mint-text);
    color: var(--white);
}

.trusted {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.trusted__text {
    color: #555555;
    margin-bottom: 30px;
    font-weight: bolder;
}

.trusted__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.intro {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    padding: 60px 20px;
    font-size: 2.3rem;
    line-height: 1.7;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .intro {
        font-size: 1.6rem;
        padding: 40px 20px;
    }
}

.final-phrase {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .final-phrase {
        white-space: normal;
    }
}

.pill {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.pill img {
    display: block;
    height: 3rem;
    width: auto;
}

@media (max-width: 768px) {
    .pill img {
        height: 2.2rem;
    }
}

.core-values {
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.core-values h2 {
    font-size: 3.5rem;
    padding: 20px 20px 60px 20px;
    font-weight: 600;
    color: #111111;
    padding-bottom: 42px;
    margin-bottom: 0;
    margin-top: 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

@media (max-width: 768px) {
    .core-values h2 {
        font-size: 2.2rem;
        padding-bottom: 24px;
    }
}

.value__grid {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.value__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    gap: 80px;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .value__card {
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .value__text-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .value__card p {
        margin-inline: auto;
    }

    .value__tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
}

.value__card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .value__card {
        flex-direction: row;
        justify-content: space-between;
        gap: 80px;
    }

    .value__text-content,
    .value__image-content {
        flex: 1;
        text-align: left;
    }
}

.value__tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 12px;
    font-weight: 500;
}

.value__card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #111111;
}

.value__card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    max-width: 480px;
}

.value__image-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .value__image-content img {
        margin-bottom: 20px;
    }
}

.video__banner {
    background-image: url(../img/video__banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: 60px auto;
    overflow: hidden;
    height: 500px;
}

@media (max-width: 768px) {
    .video__banner {
        height: 300px;
        margin: 40px auto;
    }
}

.video__banner img {
    width: 100%;
    display: block;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .play_btn {
        width: 50px;
        height: 50px;
    }
}

.impact__stats {
    background-image: url(../img/background-image.png);
    background-size: 350px 400px;
    padding: 60px 150px;
}

@media (max-width: 1200px) {
    .impact__stats {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .impact__stats {
        padding: 40px 20px;
    }
}


.impact__stats h2 {
    max-width: 950px;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    font-size: 3.5rem;
    font-weight: 600;
    color: #111111;
    padding-bottom: 42px;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .impact__stats h2 {
        font-size: 2.2rem;
        padding-bottom: 24px;
    }
}

.stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    gap: 100px;
}

@media (max-width: 1140px) {
    .stats__grid {
        gap: 40px;
        padding: 20px 0;
    }
}

@media (max-width: 900px) {
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }
}

.stat__circle {
    border-radius: 50%;
    background: #16321f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: sans-serif;
    box-sizing: border-box;
}

.stat__circle p {
    margin: 0;
    line-height: 1.1;
    font-weight: bold;
}

.stat__circle span {
    font-size: 0.85rem;
    margin-top: 8px;
    max-width: 80%;
}

.stat__circle--lg {
    width: 380px;
    height: 380px;
    color: #ffffff;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/hectares.jpg') center/cover no-repeat;
    background-color: #2d6a4f;
}

@media (max-width: 1140px) {
    .stat__circle--lg {
        width: 300px;
        height: 300px;
    }
}

.stat__circle--lg p {
    font-size: 4.5rem;
    color: #b5e49f;
}

@media (max-width: 1140px) {
    .stat__circle--lg p {
        font-size: 3.5rem;
    }
}

.stat__circle--md {
    width: 280px;
    height: 280px;
    color: #ffffff;
    background: radial-gradient(circle at center, #1b2e1e 0%, #050a06 100%);
    transform: translateY(-40px);
    align-self: flex-start;
}

@media (max-width: 1140px) {
    .stat__circle--md {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 900px) {
    .stat__circle--md {
        transform: translateY(0);
        align-self: center;
    }
}

@media (max-width: 1140px) {
    .stat__circle--md p {
        font-size: 2.5rem;
    }
}

.stat__circle--md p {
    font-size: 3.2rem;
    color: #a3b899;
}

.stat__circle--md span {
    color: #7a8a73;
}

.stat__circle--sm {
    width: 200px;
    height: 200px;
    color: #000000;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    align-self: flex-end;
    margin-bottom: 30px;
}

.stat__circle--sm p {
    font-size: 2.5rem;
    color: #2d4522;
}

@media (max-width: 900px) {
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat__circle--md {
        transform: translateY(0);
    }
}

.faqs {
    max-width: 1140px;
    margin: 100px auto;
    padding: 0 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #000000;
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 70px;
}

.faq__header .question {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.faq__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.faq__actions .contact {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.faq__actions button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.faq__actions button:hover {
    background-color: #333333;
}

.faq__list {
    display: flex;
    flex-direction: column;
}



details {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 300;
    color: #1a1a1a;
    transition: transform 0.2s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 16px;
    margin-bottom: 0;
    color: #555555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 868px) {
    .faq__header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .faq__header .question {
        font-size: 2.2rem;
    }

    .faq__action {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .faq__action {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.faq__list p {
    margin-top: 12px;
    color: #555555;
}

.footer {
    width: 100%;
    background-color: #0b0a0f;
}

.cta__dark {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1140px;
    margin: 100px auto;
    padding: 60px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta__content h2 {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta__content p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.05rem;
    line-height: 1.5;
}

.footer__buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    padding: 60px 40px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .footer__buttons {
        padding: 0;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .footer__buttons {
        width: 100%;
    }

    .footer__buttons .btn {
        flex: 1 1 auto;
        text-align: center;
    }
}

.btn {
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--light {
    background-color: #ffffff;
    color: #000000;
    border: none;
}

.btn--light:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

.btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: 3fr 0.5fr 1fr 1fr;
    max-width: 1140px;
    margin: 100px auto;
    padding: 20px 40px;
    margin-bottom: 40px;
    gap: 50px;
}

@media (max-width:1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
        margin: 60px auto;
    }
}

@media (max-width:600px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 24px;
    }
}

.footer__brand .logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer__brand .logo__icon img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
}

.footer__brand .logo__text {
    font-size: 0.95rem;
    line-height: 1.1;
    color: #38bdf8;
}

.footer__brand .tagline {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 260px;
}

.footer__col h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer__col a,
.footer__col p {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.footer__col a:hover {
    color: #ffffff;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 1140px;
    margin: 0px auto;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s ease;
}

.footer__bottom a:hover {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .cta__dark {
        flex-direction: column;
        gap: 30px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }

    .footer__bottom a {
        margin-left: 0;
        margin-right: 24px;
    }
}