


/* --- SECTION BASE --- */
.cs-future-plans {
    
    background-color: #000000;
}

/* --- THE IMAGE PLACEHOLDERS (Grey Boxes) --- */
.cs-fp-img-placeholder {
    width: 100%;
    background-color: #1A1A1A; /* Premium greyish tone matching previous requests */
    border-radius: 60px; /* Matches bento radius */
    margin-bottom: 24px;
    overflow: hidden;
    display: block;
}

/* Force height using Aspect Ratios from your Diagram (1280px frame) */
.hero-box {
    aspect-ratio: 1200 / 720; /* Fixed proportionality from wireframe */
}

.split-box {
    flex: 1; /* Both boxes share the row equally */
    aspect-ratio: 585 / 450; /* Fixed proportionality from wireframe */
}

/* Hide actual images if they arrive, background shows grey until then */
.cs-fp-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The Row for Images 6&7, 8&9 */
.cs-fp-img-split {
    display: flex;
    gap: 12px; /* Standard bento gap consistent with Results section */
    border-radius: 60px;
    margin-bottom: 24px;
}

/* --- TYPOGRAPHY (Future Plans Content) --- */
.cs-fp-content {
    padding: 80px 0;
}

.cs-section-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px; /* Tighter gap matching Results Reference */
}

.cs-fp-intro, .cs-fp-summary p {
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
}

.cs-fp-summary p {
    margin-bottom: 32px; /* Slightly larger gap before the list */
}

/* THE LIST (Exact clone of image_8c1d5f.png reference from previous interaction) */
.cs-fp-list {
    list-style: none !important; /* Removes default browser bullets */
    padding: 0;
    margin: 16px 0 40px 0; /* Exact margin from Results reference */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Vertical gap between items matching reference */
}

.cs-fp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px; /* Gap between checkmark and text matching reference */
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px; /* Exact line-height from reference */
    color: #FFFFFF;
}

.cs-fp-list img {
    width: 24px; /* Icon size consistent with Results section reference */
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}


/* MOBILE FIX */
@media (max-width: 768px) {
    .cs-fp-img-split {
        flex-direction: column;
    }
}

/* --- For text animation on scroll --- */
.line-mask {
    overflow: hidden;
    display: block;
}