﻿/* ===================================================
   FounderSupport.css — Complete, Border‑Free Hero
=================================================== */

/* ===================================================
   Variables & Global Settings
=================================================== */
:root {
    --gold: #f2a365;
    --dark: #111;
    --light: #fff;
    --text-dark: #222;
    --accent: #747fc1;
    --transition: 0.3s ease;
}

/* ===================================================
   Scroll‑Progress Bar
=================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ===================================================
   Footer Background & Text White
=================================================== */
footer, .footer, .site-footer {
    background: #000 !important;
    color: #fff !important;
    padding: 2rem 1rem;
    text-align: center;
}

    footer p, .footer p, .site-footer p {
        color: #fff !important;
    }

    footer a, .footer a {
        color: #fff !important;
        opacity: 0.8;
        transition: opacity var(--transition);
    }

        footer a:hover, .footer a:hover {
            opacity: 1;
        }

/* ===================================================
   Global Typography & Defaults
=================================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, p {
    margin: 0 0 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================================
   Hero Section for Founder Launchpad (No Border)
=================================================== */
.founder-hero {
    position: relative;
    overflow: hidden;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* explicitly remove any border or shadow */
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

    .founder-hero .hero-img-wrapper {
        position: absolute;
        inset: 0;
        z-index: 0;
        /* ensure no border around the image */
        border: none !important;
        box-shadow: none !important;
        margin: 0;
        padding: 0;
    }

        .founder-hero .hero-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

    .founder-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        backdrop-filter: blur(4px);
    }

    #particle-canvas,
    .founder-hero .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
    }

    .founder-hero .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        text-align: center;
        padding: 0 1rem;
        animation: fadeInDown 1s var(--transition) both;
    }

        .founder-hero .hero-content h1 {
            font-size: 4rem;
            letter-spacing: 4px;
            margin-bottom: 0.5rem;
            color: var(--light);
            animation: pulse 2s infinite;
        }

        .founder-hero .hero-content .hero-typewriter {
            font-size: 1.25rem;
            color: var(--light);
            min-height: 1.5em;
        }


/* ===================================================
   White Section Wrapper
=================================================== */
.white-section {
    background: var(--light);
    padding: 3rem 1.5rem;
}

/* ===================================================
   Who This Is For Grid
=================================================== */
.who-this-for-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.who-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    perspective: 800px;
}

    .who-card i {
        font-size: 2.5rem;
        color: var(--accent);
        margin-bottom: 1rem;
        transition: transform var(--transition);
    }

    .who-card:hover {
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
        box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }

        .who-card:hover i {
            transform: scale(1.2);
        }

#what-is {
    /* space around the section */
    padding: 4rem 1.5rem;
    background: var(--light);
    color: var(--text-dark);
    text-align: center;
}

    #what-is h2 {
        /* reuse your section-title look */
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        color: var(--text-dark);
    }

        #what-is h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gold);
            margin: 10px auto 0;
        }

    #what-is p {
        /* constrain the paragraph width & improve readability */
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        font-size: 1rem;
        color: var(--text-dark);
    }

/* ===================================================
   What You Get (Services Grid)
=================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
    list-style: none;
    margin-bottom: 3rem;
}

    .services-grid li {
        background: #fff;
        padding: 2rem 1.5rem;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        transition: transform var(--transition), box-shadow var(--transition);
    }

        .services-grid li i {
            font-size: 1.75rem;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        .services-grid li strong {
            display: block;
            margin-bottom: 0.5rem;
        }

/* ===================================================
   Deep‑Dive Cards
=================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

    .card i {
        font-size: 2rem;
        color: var(--accent);
        margin-bottom: 1rem;
    }

    .card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: translateX(-50%) scaleX(0);
        transition: transform var(--transition);
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 48px rgba(0,0,0,0.1);
    }

        .card:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

/* ===================================================
   Investment (Pricing Grid)
=================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    perspective: 1000px;
    cursor: pointer;
}

.pricing-card-inner {
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.pricing-card:hover .pricing-card-inner,
.pricing-card.flipped .pricing-card-inner {
    transform: rotateY(180deg);
}

.pricing-card-front,
.pricing-card-back {
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pricing-card-front {
    background: #fff;
}

.pricing-card-back {
    background: var(--gold);
    color: var(--light);
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-card.featured .pricing-card-front {
    border: 3px solid var(--gold);
}

.price {
    font-size: 2rem;
    color: var(--accent);
    margin: .5rem 0 1rem;
}

.pricing-card-front ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-front li {
    margin: .5rem 0;
}

/* ===================================================
   Call‑To‑Action Button
=================================================== */
.cta .btn-work {
    position: relative;
    overflow: hidden;
    background: var(--gold);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background var(--transition), transform var(--transition);
}

    .cta .btn-work:hover {
        background: #d98c4f;
        transform: translateY(-3px);
    }

    .cta .btn-work::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
        transform: skewX(-25deg);
    }

    .cta .btn-work:hover::after {
        animation: glint 1s forwards;
    }

/* ===================================================
   Keyframes & AOS Reset
=================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,100% {
        text-shadow: 0 0 10px rgba(242,163,101,0.7);
    }

    50% {
        text-shadow: 0 0 20px rgba(242,163,101,1);
    }
}

@keyframes glint {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}

    [data-aos].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }

/* ===================================================
   Responsive
=================================================== */
@media (max-width: 768px) {
    .founder-hero {
        height: 30vh;
    }

        .founder-hero .hero-content h1 {
            font-size: 2.5rem;
        }

        .founder-hero .hero-content .hero-typewriter {
            font-size: 1rem;
            max-width: 90%;
        }

    .who-this-for-grid,
    .services-grid,
    .cards-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   Full‑Width Hero Override
=================================================== */
.founder-full {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

    .founder-full .founder-hero {
        width: 100%;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }

/* ===================================================================
   Center Section Titles & CTA Button
   =================================================================== */

/* Ensure every <h2 class="section-title"> is centered */
.section-title {
    text-align: center;
    /* If you need to override anything else: */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center the Work With Us button in its white‑section.cta */
.cta .cta-list {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Make sure each <li> inside that list stays inline and centered */
.cta-list li {
    display: inline-block;
    margin-top: 1.5rem;
}

/* Optionally force the button itself to be inline‑block with centered margin */
.cta .btn-work {
    display: inline-block;
    margin: 0 auto;
}