.objective-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.objective-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.objective-description {
    font-size: 18px;
    line-height: 22px;
    color: var(--color-black);
    text-align: center;
    max-width: 572px;
    margin: 0;
}

.objective-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin-top: 20px;
}

.objective-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.step-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-connector {
    position: absolute;
    top: 27px;
    left: calc(50% + 27px);
    width: calc(100% - 54px);
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--color-primary-dark),
        var(--color-primary-dark) 4px,
        transparent 4px,
        transparent 8px
    );
}

.objective-step:last-child .step-connector {
    display: none;
}

.step-content {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 335px;
}

.step-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    line-height: 22px;
    color: var(--color-neutral-500);
    margin: 0;
}

.step-description {
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    line-height: 20px;
    color: var(--color-neutral-500);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .objective-steps {
        flex-wrap: wrap;
        gap: clamp(24px, 3vw, 40px);
        justify-content: center;
    }

    .objective-step {
        flex: 0 0 calc(50% - 20px);
        max-width: 300px;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .objective-section {
        padding: 60px 0;
    }

    .objective-container {
        gap: 32px;
    }

    .objective-description {
        font-size: 16px;
        line-height: 22px;
    }

    .objective-steps {
        gap: 24px;
    }

    .objective-step {
        flex: 0 0 calc(50% - 12px);
        max-width: none;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-content {
        margin-top: 20px;
        gap: 8px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .objective-section {
        padding: 48px 0;
    }

    .objective-container {
        gap: 24px;
    }

    .objective-description {
        font-size: 14px;
        line-height: 20px;
    }

    .objective-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .objective-step {
        flex: none;
        width: 100%;
        max-width: 280px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
    }

    .step-content {
        margin-top: 16px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-description {
        font-size: 13px;
        line-height: 18px;
    }
}
