/* Proven Process Steps - a8b48903 v1.2.0 */

.pps-a8b48903-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.pps-a8b48903-wrapper *,
.pps-a8b48903-wrapper *::before,
.pps-a8b48903-wrapper *::after {
    box-sizing: border-box;
}

/* Header */
.pps-a8b48903-header {
    text-align: center;
    margin-bottom: 40px;
}

.pps-a8b48903-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #1ABC9C;
}

.pps-a8b48903-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* Steps Row - Flexbox layout */
.pps-a8b48903-steps-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    justify-content: center;
}

.pps-a8b48903-step-col {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
}

/* Card */
.pps-a8b48903-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pps-a8b48903-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Badge */
.pps-a8b48903-badge {
    position: absolute;
    top: -14px;
    left: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background-color: #1ABC9C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    z-index: 1;
}

/* Icon */
.pps-a8b48903-icon {
    margin-bottom: 15px;
    font-size: 40px;
    color: #2c3e7a;
    line-height: 1;
}

.pps-a8b48903-icon svg {
    width: 40px;
    height: 40px;
    fill: #2c3e7a;
}

.pps-a8b48903-icon i {
    font-size: inherit;
}

/* Step Title */
.pps-a8b48903-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* Step Description */
.pps-a8b48903-step-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Arrow Column */
.pps-a8b48903-arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
}

.pps-a8b48903-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.pps-a8b48903-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .pps-a8b48903-steps-row {
        flex-wrap: wrap;
    }

    .pps-a8b48903-step-col {
        flex: 1 1 calc(50% - 40px);
        min-width: calc(50% - 40px);
    }

    .pps-a8b48903-arrow-col {
        width: 20px;
    }

    .pps-a8b48903-title {
        font-size: 26px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .pps-a8b48903-steps-row {
        flex-direction: column;
        align-items: center;
    }

    .pps-a8b48903-step-col {
        flex: 1 1 100%;
        min-width: 100%;
        width: 100%;
    }

    .pps-a8b48903-arrow-col {
        width: auto;
        transform: rotate(90deg);
        padding: 5px 0;
    }

    .pps-a8b48903-title {
        font-size: 22px;
    }
}
