/* CTA SPLIT SECTION - PREMIUM EDITORIAL V124 */
.cta-split-section {
    padding: clamp(120px, 15vw, 250px) var(--inner-px);
    display: flex;
    gap: clamp(20px, 4vw, 60px);
    background: #fff; /* Exterior background for split look */
    position: relative;
}

.cta-left {
    flex: 1.2;
    background: #000;
    border-radius: 45px;
    padding: clamp(50px, 6vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: clamp(400px, 40vh, 550px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

/* Technical Pattern on left background */
.cta-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(195, 229, 111, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.cta-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.2rem, 8vw, 8.5rem);
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    font-weight: 950;
    max-width: 100%;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

/* BUTTONS - LUXURY PILLS */
.cta-btn-group {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 22px 45px;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
}

.btn-pill {
    background: var(--accent);
    color: #000;
    padding: 8px 8px 8px 45px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-pill .btn-circle {
    width: 55px;
    height: 55px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.btn-pill:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px var(--accent-glow);
}

/* RIGHT IMAGE - CLINICAL EXECUTION */
.cta-right {
    flex: 0.8;
    position: relative;
    border-radius: 45px;
    overflow: hidden;
    min-height: 550px;
}

.cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.1);
    margin: 30px;
    border-radius: 25px;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

/* MOBILE */
@media (max-width: 1024px) {
    .cta-split-section { 
        flex-direction: column; 
        padding: 60px 15px; 
        gap: 20px;
    }
    .cta-left { 
        min-height: auto; 
        padding: 80px 30px; 
        border-radius: 40px;
    }
    .cta-tagline { 
        font-size: clamp(2.8rem, 12vw, 4rem); 
        line-height: 0.95; 
        letter-spacing: -2px; 
        margin-bottom: 25px;
    }
    .cta-description {
        font-size: 16px;
        margin-bottom: 40px;
        opacity: 0.7;
    }
    .cta-right { 
        min-height: 450px; 
        border-radius: 40px;
    }
    .cta-overlay {
        margin: 20px;
        border-radius: 20px;
    }
    .cta-btn-group { 
        flex-direction: column; 
        width: 100%; 
        gap: 15px;
    }
    .btn-pill, .btn-outline { 
        width: 100%; 
        justify-content: center; 
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .btn-pill { padding-left: 30px; }
}
