/* ============================================
   Slim Lead-Capture Banners
   Inline phone-only capture strips between sections
   ============================================ */

.lead-banner {
    position: relative;
    padding: 32px 24px;
    background: rgba(15, 12, 41, 0.4); /* Dark translucent background */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 10;
}

/* Subtle glow effects */
.lead-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lead-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(241, 91, 181, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lead-banner__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.lead-banner__text {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.lead-banner__title {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.lead-banner__title .highlight {
    color: var(--secondary-color, #F15BB5);
}

.lead-banner__subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.lead-banner__form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lead-banner__input {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    width: 200px;
    outline: none;
    transition: all 0.3s ease;
    direction: ltr;
    text-align: center;
}

.lead-banner__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.lead-banner__input:focus {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.lead-banner__btn {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 26px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.lead-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.lead-banner__btn:active {
    transform: translateY(0);
}

.lead-banner__btn i {
    margin-left: 8px;
}

/* Variant 2: Gold/Accent details for variety */
.lead-banner--variant-2::before {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
}
.lead-banner--variant-2::after {
    background: radial-gradient(circle, rgba(93, 62, 191, 0.1) 0%, transparent 70%);
}

.lead-banner--variant-2 .lead-banner__title .highlight {
    color: #fbbf24;
}

.lead-banner--variant-2 .lead-banner__btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.lead-banner--variant-2 .lead-banner__btn:hover {
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}
.lead-banner--variant-2 .lead-banner__input:focus {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

/* Variant 3: Blue/Tech styling */
.lead-banner--variant-3::before {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
}
.lead-banner--variant-3::after {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.lead-banner--variant-3 .lead-banner__title .highlight {
    color: #38bdf8;
}

.lead-banner--variant-3 .lead-banner__btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
.lead-banner--variant-3 .lead-banner__btn:hover {
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}
.lead-banner--variant-3 .lead-banner__input:focus {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}


/* Responsive */
@media (max-width: 768px) {
    .lead-banner {
        padding: 28px 20px;
    }

    .lead-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .lead-banner__text {
        text-align: center;
    }

    .lead-banner__form {
        width: 100%;
        justify-content: center;
    }

    .lead-banner__input {
        flex: 1;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .lead-banner__form {
        flex-direction: column;
        width: 100%;
    }
    
    .lead-banner__input,
    .lead-banner__btn {
        width: 100%;
        max-width: 100%;
    }
}
