* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --green: #07a507;
    --green-deep: #036b35;
    --green-bright: #00c853;
    --dark: #07130e;
    --dark-soft: #102018;
    --light: #f5fff8;
    --muted: #5d7065;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand img {
    height: 58px;
    width: 58px;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease;
}

.brand:hover img {
    transform: translateY(-3px);
}

.name {
    color: var(--green);
    font-size: clamp(20px, 4vw, 34px);
    font-weight: 800;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li a {
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover {
    color: var(--dark);
    transform: translateY(-2px);
}

.btn,
.btn-hero,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.45rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn,
.btn-hero {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-bright));
    box-shadow: 0 14px 30px rgba(7, 165, 7, 0.28);
}

.btn:hover,
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(7, 165, 7, 0.36);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
    border: 0;
    background: transparent;
}

.burger span {
    width: 27px;
    height: 3px;
    background-color: var(--green);
    border-radius: 999px;
}

.close-btn {
    display: none;
    place-items: center;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1100;
    color: var(--white);
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.hero {
    min-height: 92vh;
    padding: 8.5rem 5% 4.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 19, 14, 0.94) 0%, rgba(7, 19, 14, 0.82) 45%, rgba(7, 165, 7, 0.16) 100%),
        url("../images/finance-hero.jpg") center right / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(180deg, rgba(245, 255, 248, 0), var(--light));
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    max-width: 1200px;
    min-height: 68vh;
    margin: 0 auto;
    gap: 2rem;
}

.hero-text {
    max-width: 690px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #baf7c6;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-text h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
}

.hero-text p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1.8rem;
}

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

.hero-panel {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 19, 14, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-panel div {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel span,
.stats-band span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-panel strong,
.stats-band strong {
    display: block;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.1;
}

.investment-info,
.faq-section {
    padding: 5rem 5%;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.section-heading .eyebrow {
    color: var(--green);
    margin-bottom: 0.55rem;
}

.section-heading h2 {
    color: var(--dark);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 0.8rem;
}

.section-heading p {
    color: var(--muted);
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1120px;
    margin: 0 auto;
}

.feature-grid article {
    min-height: 240px;
    padding: 1.6rem;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(7, 165, 7, 0.12);
    box-shadow: 0 18px 45px rgba(7, 19, 14, 0.08);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.3rem;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-weight: 800;
}

.feature-grid h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.feature-grid p,
.faq-list p {
    color: var(--muted);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--dark);
}

.stats-band div {
    padding: 2.4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--dark), var(--green-deep));
}

.faq-section {
    background:
        linear-gradient(180deg, rgba(245, 255, 248, 0.96), rgba(255, 255, 255, 0.98)),
        url("../images/finance-hero.jpg") center / cover no-repeat;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: left;
}

.faq-list details {
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(7, 165, 7, 0.14);
    box-shadow: 0 14px 32px rgba(7, 19, 14, 0.07);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    color: var(--dark);
    font-weight: 800;
}

.faq-list p {
    padding: 0 1.35rem 1.25rem;
}

footer {
    background: var(--green);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-content-wrapper,
    .feature-grid,
    .stats-band {
        grid-template-columns: 1fr;
    }

    .hero-content-wrapper {
        align-items: center;
    }

    .hero-panel {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -230px;
        height: 100vh;
        width: 220px;
        background: var(--green);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.25rem;
        gap: 1.5rem;
        box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

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

    .nav-links li a {
        color: var(--white);
        font-size: 1.05rem;
    }

    .nav-links .btn {
        color: var(--green);
        background: var(--white);
        box-shadow: none;
    }

    .hero {
        min-height: auto;
        padding-top: 7.6rem;
        background:
            linear-gradient(180deg, rgba(7, 19, 14, 0.94), rgba(7, 19, 14, 0.72)),
            url("../images/finance-hero.jpg") center / cover no-repeat;
    }

    .hero-content-wrapper {
        min-height: 0;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

    .investment-info,
    .faq-section {
        padding: 3.8rem 5%;
    }
}

@media (max-width: 480px) {
    .brand {
        gap: 0.55rem;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-panel strong,
    .stats-band strong {
        font-size: 1.45rem;
    }
}
