/* ================= VALUE SECTION ================= */

.value-section {
    background: #f4f4f4;
    padding: 100px 0;
}

.value-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;

    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* ================= LEFT ================= */

.value-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #f04e30;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.value-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5a67;
    margin-bottom: 14px;
    max-width: 520px;
}
.value-content strong {
    color: #2a6fb0;
    font-weight: 600;
}

/* ================= BUTTON ================= */

.value-buttons {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.value-buttons .btn-primary {
    background: #f04e30;
    color: #fff;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.value-buttons .btn-secondary {
    background: #0e3b4f;
    color: #fff;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* ================= RIGHT (IMAGE) ================= */

.value-steps {
    justify-content: flex-end;
}

.value-steps img {
    width: 100%;
    max-width: 360px;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.value-steps img:hover {
    transform: translateY(-6px) scale(1.02);
}

/* ================= ANIMATION ================= */

.value-content,
.value-steps {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.value-steps {
    transition-delay: 0.25s;
}

.value.loaded .value-content,
.value.loaded .value-steps {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .value-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .value-steps {
        justify-content: center;
    }

    .value-steps img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {

    .value-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: left;
    }

    .value-content {
        align-items: flex-start;
    }

    .value-content h2 {
        font-size: 34px;
    }

    .value-content p {
        font-size: 15px;
    }

    .value-buttons {
        flex-direction: column;
        width: 100%;
    }

    .value-buttons a {
        width: 100%;
        text-align: center;
    }

    .value-steps {
        justify-content: center;
    }

    .value-steps img {
        max-width: 260px;
    }
}