/* Business Plan Generator Styling */
.tool-highlight {
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.tool-card.featured {
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 992px) {
    .tool-card.featured {
        flex-direction: column;
    }
}

.tool-content {
    flex: 1;
    padding: 2rem;
    background-color: #4a6fdc;
    color: white;
}

.tool-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.tool-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tool-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.tool-features li i {
    color: #34c759;
    margin-right: 0.5rem;
}

.tool-form {
    flex: 1.5;
    padding: 2rem;
    background-color: white;
}

.lead-capture-form {
    max-width: 100%;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a6fdc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 111, 220, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.error {
    border-color: #ff3b30 !important;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn-primary {
    background-color: #4a6fdc;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-success {
    background-color: #34c759;
}

.offer-text {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.benefits-list {
    background-color: #f8f9fa;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

.benefits-list i {
    color: #4a6fdc;
    margin-right: 0.5rem;
}

.trust-signals {
    margin-top: 1.5rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.trust-signals .user-count {
    margin-top: 0.5rem;
    font-weight: 500;
}

.trust-signals .count {
    color: #4a6fdc;
    font-weight: 700;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #34c759;
    margin-bottom: 1rem;
}

.next-steps {
    margin-top: 2rem;
    text-align: left;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
}

.next-steps h4 {
    margin-bottom: 1rem;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}
