/* =============================================
   Landing Page Styles
   ============================================= */

/* --- Hero + Features wrapper --- */
.landing-hero-features-wrapper {
    position: relative;
    overflow: hidden;
}

.landing-circles-svg {
    position: absolute;
    width: 850px;
    height: 850px;
    top: -200px;
    /* Align SVG right edge with the .container right edge (max-width 1000px centered) */
    right: calc(50% - 500px);
    z-index: 0;
    pointer-events: none;
}

/* --- Hero Section --- */
.landing-hero {
    position: relative;
    padding: 80px 0 60px;
    background-color: transparent;
    min-height: 420px;
}

.landing-hero .container {
    position: relative;
    z-index: 2;
}

.landing-hero-content {
    max-width: 100%;
    padding-left: 20px;
    border-left: 2px solid #212129;
}

.landing-hero-heading {
    font-size: 3.4rem;
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 700;
    color: #212129;
}

.landing-hero-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 28px;
    max-width: 460px;
}

/* Dark button variant */
.btn-dark {
    background-color: #212129 !important;
    color: #fff !important;
}

.btn-dark:hover {
    background-color: #3a3a45 !important;
}

@media (max-width: 768px) {
    .landing-hero-heading {
        font-size: 2.2rem;
    }
    .landing-circles-svg {
        width: 650px;
        height: 650px;
        top: -150px;
        right: -250px;
        clip-path: none;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        padding: 50px 0 40px;
    }
    .landing-hero-heading {
        font-size: 1.6rem;
    }
    .landing-circles-svg {
        width: 500px;
        height: 500px;
        top: -100px;
        right: -300px;
        clip-path: none;
    }
}


/* --- Features Section --- */
.landing-features {
    position: relative;
    padding: 0 0 60px;
    background: transparent;
    z-index: 2;
}



/* --- 45% Stats Section --- */
.landing-stats {
    position: relative;
    background-color: #FFDE59;
    padding: 80px 0;
    overflow: hidden;
}

.landing-stats .container {
    position: relative;
    overflow-x: clip;
}

.landing-stats-rings-svg {
    position: absolute;
    width: 700px;
    height: 700px;
    bottom: -380px;
    left: -280px;
    pointer-events: none;
    z-index: 0;
}

.landing-stats-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.landing-stats-left {
    flex: 0 0 45%;
    text-align: right;
    padding-right: 40px;
}

.landing-stats-number {
    font-size: 8rem;
    line-height: 1;
    color: #212129;
    font-weight: 700;
}

.landing-stats-right {
    flex: 1;
    border-left: 2px solid #212129;
    padding-left: 30px;
}

.landing-stats-raised {
    margin-bottom: 12px;
}

.landing-stats-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #212129;
    display: block;
    line-height: 1.1;
}

.landing-stats-target {
    font-size: 1.1rem;
    color: #212129;
    font-weight: 500;
}

.landing-stats-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 360px;
}

.landing-stats-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .landing-stats-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .landing-stats-left {
        flex: 0 0 auto;
        text-align: center;
        padding-right: 0;
    }
    .landing-stats-right {
        border-left: none;
        border-top: 2px solid #212129;
        padding-left: 0;
        padding-top: 24px;
        text-align: center;
    }
    .landing-stats-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .landing-stats-buttons {
        justify-content: center;
    }
    .landing-stats-number {
        font-size: 5rem;
    }
    .landing-stats-rings-svg {
        width: 500px;
        height: 500px;
        bottom: auto;
        top: -200px;
        left: auto;
        right: -250px;
    }
}
