/**
 * Process Section Block Styles
 *
 * @package NeoFinances
 */

.neo-process-section {
    background-color: var(--neo-white);
}

.neo-process-section .neo-section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.neo-process-section .neo-badge {
    display: inline-block;
    background-color: #4facba;
    color: var(--neo-white);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.neo-process-section .neo-section-title {
    font-size: var(--neo-font-size-3xl);
    font-weight: 700;
    color: #295980;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .neo-process-section .neo-section-title {
        font-size: var(--neo-font-size-4xl);
    }
}

@media (min-width: 1024px) {
    .neo-process-section .neo-section-title {
        font-size: var(--neo-font-size-5xl);
    }
}

.neo-process-section .neo-section-subtitle {
    font-size: var(--neo-font-size-lg);
    color: #295980;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Process Grid */
.neo-process-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .neo-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Process Step - Blue card style */
.neo-process-step {
    background-color: #2a5980;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.neo-process-step:hover {
    box-shadow: var(--neo-shadow-xl);
}

/* Step Number - larger for visual impact */
.neo-process-number {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--neo-white);
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Step Title */
.neo-process-step .neo-process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neo-white) !important;
    margin-bottom: 1rem;
}

/* Step Description */
.neo-process-step .neo-process-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin: 0;
}

/* Text center utility */
.text-center {
    text-align: center;
}
