/* Reset minimal */
* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, Arial, sans-serif;
    color: #102a43;
    background: #f6f8fa
}

/* Container */
.crowdfunding-container {
    padding: 24px
}


.crowdfunding-container section {
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #6D071A
}

.brand img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover
}

nav.primary {
    display: flex;
    gap: 18px;
    align-items: center
}

nav.primary a {
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #16324b;
    font-weight: 600
}

.cta {
    background: #6D071A;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700
}

/* Hero */
.crowdfunding-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: center;
    padding: 48px 0
}

.crowdfunding-hero .left h1 {
    font-size: 2.25rem;
    margin: 0 0 12px
}

.crowdfunding-hero .left p {
    color: #475569;
    margin: 0 0 18px
}

.crowdfunding-hero .actions {
    display: flex;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none
}

.btn-primary {
    background: #6D071A;
    color: #fff
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(13, 23, 34, 0.08);
    color: #16324b
}

.mockup {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center
}

.mockup img {
    width: 100%;
    height: auto;
    max-width: 360px;
    border-radius: 12px
}

/* Two column intro */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px
}

.crowdfunding-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05)
}

.crowdfunding-card h3 {
    margin-top: 0;
    color: #6D071A
}

/* Featured projects grid */
.projects {
    margin-top: 40px !important;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
}

.project {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px
}

.project .media {
    height: 140px;
    background: #e6eef8;
    background-size: cover;
    background-position: center
}

.project .body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.project h4 {
    margin: 0 0 8px
}

.meta {
    font-size: 0.9rem;
    color: #62727a;
    margin-bottom: 10px
}

.progress-wrap {
    margin-top: auto
}

.progress {
    height: 10px;
    background: #e9eef6;
    border-radius: 999px;
    overflow: hidden
}

.progress>span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #6D071A, #8A1530);
    width: 40%
}

.project .actions {
    margin-top: 12px;
    display: flex;
    gap: 8px
}

.support-btn {
    background: #6D071A;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700
}

/* How it works */

.how {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.step {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04)
}

.step h4 {
    margin: 0 0 8px;
    color: #16324b
}

.step p {
    margin: 0;
    color: #475569
}

/* FAQ */
.faq {
    margin: 40px 0
}

details {
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04)
}

summary {
    font-weight: 700;
    cursor: pointer
}

/* CTA band */
.cta-band {
    background: #6D071A;
    color: #fff;
    padding: 30px !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 50px !important;
}

/* Footer */
footer {
    margin-top: 40px;
    padding: 24px 0;
    color: #64748b;
    text-align: center
}

/* Responsive */
@media (max-width:980px) {
    .crowdfunding-hero {
        grid-template-columns: 1fr;
    }

    .crowdfunding-hero .mockup {
        order: -1
    }
}

@media (max-width:520px) {
    .crowdfunding-hero .left h1 {
        font-size: 1.6rem
    }

    .intro {
        grid-template-columns: 1fr
    }
}

.crowdfunding-container h1, .crowdfunding-container h2{
    color: #102A43 !important;
    font-weight: bold;
}

.crowdfunding-container h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.support-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.btn:hover {
    background-color: var(--color-8) !important;
}

.crowdfunding-container h3 {
    font-size: 19px;
    font-weight: bold;
}

.crowdfunding-container h4 {
    font-size: 16px;
    font-weight: bold;
}

.crowdfunding-container section {
    padding: 0;
}

.btn-ghost:hover {
    color: #fff !important;
}

.ui-progressbar-value {
    background-color: var(--rouge-bordeau) !important;
}

.ui-progressbar {
    height: 10px !important;
}

#get-started-btn:hover {
    color: #fff !important;
}

.crowdfunding-container .infos {
    background: #F0FCE9;
    margin: 100px 0;
    display: flex;
    align-items: center;
    padding: 50px;
}

.crowdfunding-container .infos h2 {
    font-size: 28px;
}
.crowdfunding-container .infos p {
    font-size: 24px;
}