/* --- CTA WIDGET BASE --- */
.starter-cta { border-radius: 1rem; overflow: hidden; position: relative; width: 100%; }
.starter-cta-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    text-decoration: none !important; 
    border-bottom: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* --- STYLE 1: SPLIT LAYOUT --- */
.starter-cta--split { 
    background: white; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); 
}
@media(min-width: 768px) { .starter-cta--split { flex-direction: row; } }

.starter-cta--split .starter-cta-content { 
    padding: 3rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    width: 100%; 
}
@media(min-width: 768px) { .starter-cta--split .starter-cta-content { width: 50%; } }

.starter-cta--split .starter-cta-img-wrap { 
    position: relative; 
    overflow: hidden; 
    height: 300px; 
    width: 100%; 
}
@media(min-width: 768px) { .starter-cta--split .starter-cta-img-wrap { height: auto; width: 50%; } }

.starter-cta--split img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}
.starter-cta--split:hover img { transform: scale(1.05); }

.starter-cta-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(30, 58, 138, 0.1); 
    mix-blend-mode: multiply; 
}

.starter-cta--split h2 { 
    color: #111827; 
    font-size: 2rem; 
    font-weight: 800; 
    margin-bottom: 1rem; 
}

.starter-cta--split p { 
    color: #4b5563; 
    margin-bottom: 2rem; 
    font-size: 1.125rem; 
}

.starter-cta--split .starter-cta-btn {
    background: #4f46e5;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
    align-self: flex-start;
}
.starter-cta--split .starter-cta-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* --- STYLE 2: DARK GLOW (SaaS/Tech) --- */
.starter-cta--dark-glow {
    background-color: #0f172a;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

/* Background Glow Effects */
.starter-cta-glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.starter-cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.starter-cta--dark-glow h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.starter-cta--dark-glow p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.starter-cta--dark-glow .starter-cta-btn {
    background: #6366f1;
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(99,102,241,0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.starter-cta--dark-glow .starter-cta-btn:hover {
    background: #4f46e5;
    box-shadow: 0 0 30px rgba(99,102,241,0.6);
    transform: translateY(-2px);
}

/* --- STYLE 3: ABSTRACT MINIMAL --- */
.starter-cta--minimal-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .starter-cta--minimal-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Decorative Patterns */
.starter-cta-pattern-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid #f3f4f6;
    border-radius: 50%;
    z-index: 0;
}
.starter-cta-pattern-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#e5e7eb 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}

.starter-cta--minimal-box .starter-cta-content {
    max-width: 600px;
    z-index: 10;
}

.starter-cta--minimal-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.starter-cta--minimal-box p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0;
}

.starter-cta--minimal-box .starter-cta-btn {
    background: #111827;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.starter-cta--minimal-box .starter-cta-btn:hover {
    transform: scale(1.05);
    background: #000;
}