/* ======================
   COMMON FINAL CTA
====================== */

.common-final-cta {
    padding: clamp(80px, 8vw, 120px) 0 clamp(100px, 12vw, 160px);
    background: #05010a;
}

/* GRID */
.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 10;
}

/* BANNER */
.cta-banner {
    position: relative;
    width: 100%;
    background: #0d0d0d;
    border-radius: clamp(20px, 4vw, 40px);
    padding: clamp(50px, 8vw, 100px) clamp(30px, 6vw, 80px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Background Glow */
.banner-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    background: radial-gradient(circle,
        rgba(165, 148, 253, 0.08) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* LEFT SIDE */
.cta-left {
    text-align: left;
}

.cta-banner-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.cta-banner-text {
    font-size: clamp(14px, 1.2vw, 19px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: clamp(30px, 5vw, 50px);
    max-width: 550px;
}

/* Buttons */
.cta-banner-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* RIGHT SIDE */
.cta-right-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Portrait */
.founder-portrait-wrap {
    position: relative;
    width: clamp(180px, 22vw, 280px);
    aspect-ratio: 1 / 1.2;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
}

/* Quote */
.founder-quote-area {
    text-align: center;
    max-width: 320px;
}

.motivating-quote {
    font-family: serif;
    font-style: italic;
    font-size: clamp(14px, 1.4vw, 20px);
    line-height: 1.4;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.motivating-quote i {
    color: var(--purple-light);
}

.quote-author {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 700;
}

/* ======================
   TABLET (1024px ↓)
====================== */

@media (max-width: 1024px) {

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-left {
        margin-bottom: 60px;
        text-align: center;
    }

    .cta-banner-text {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner-btns {
        justify-content: center;
    }

    .banner-glow {
        right: 50%;
        transform: translateX(50%);
        top: -40%;
    }
}

/* ======================
   MOBILE (768px ↓)
====================== */

@media (max-width: 768px) {

    .common-final-cta {
        padding: 100px 0;
    }

    .cta-banner {
        padding: 40px 25px;
    }

    .cta-banner-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .cta-banner-text {
        font-size: 14px;
    }

    .cta-banner-btns {
        flex-direction: column;
        gap: 15px;
    }

    .founder-portrait-wrap {
        width: 180px;
    }

    .motivating-quote {
        font-size: 14px;
    }
}

/* ======================
   SMALL MOBILE (480px ↓)
====================== */

@media (max-width: 480px) {

    .common-final-cta {
        padding: 80px 0;
    }

    .cta-banner {
        border-radius: 16px;
    }

    .founder-portrait-wrap {
        width: 150px;
    }

    .quote-author {
        font-size: 10px;
    }
}