/* ============================================
   RESULTS-DRIVEN GROWTH MODEL SECTION
   ============================================ */
.growth-model-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.growth-model-section .form-separator {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 35px;
    border-radius: 2px;
}

/* Main 2-Column Layout */
.growth-main-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    margin-bottom: 40px;
}

/* Left: Message Box */
.growth-message-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(12, 45, 135, 0.25);
}

.pay-per-lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.4);
}

.pay-per-lead-badge i {
    font-size: 1.1rem;
}

.growth-message-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.growth-message-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
}

.no-leads-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.no-leads-tag i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.no-leads-tag strong {
    font-size: 1.1rem;
}

/* Right: Process Steps */
.growth-process {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    border-left: 5px solid var(--accent-color);
}

.growth-process h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

/* Bottom: Advantages Row */
.growth-advantages-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius-lg);
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
}

.advantage-item i {
    font-size: 1.5rem;
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 992px) {
    .growth-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .growth-advantages-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .growth-model-section {
        padding: 50px 0;
    }

    .growth-message-box {
        padding: 30px;
    }

    .growth-message-box h3 {
        font-size: 1.5rem;
    }

    .growth-process {
        padding: 25px;
    }

    .growth-process h4 {
        font-size: 1.3rem;
    }

    .step-item p {
        font-size: 0.95rem;
    }

    .advantage-item {
        font-size: 0.95rem;
    }
}
