/* FZ Group — Nilai yang Anda Dapatkan (Company home) */

.fz-values {
    position: relative;
    padding: var(--fz-section-y, clamp(56px, 8vw, 96px)) 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fc 48%, #f5f8ff 100%);
}

/*
 * Pola bar (beda dari fz-why):
 * — Keunggulan Partner: bar vertikal di tepi kiri/kanan tengah
 * — Komitmen Kami: kipas sudut kanan-atas + pasangan miring kiri-bawah
 */
.fz-values__bars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fz-values__bar {
    position: absolute;
    width: auto;
    max-width: none;
    object-fit: contain;
    opacity: 0.38;
    filter: hue-rotate(165deg) saturate(1.2) brightness(1.08);
}

/* Kipas kanan-atas — tiga bar memancar ke kiri-bawah */
.fz-values__bar--tr-1 {
    top: -6%;
    right: 2%;
    height: clamp(160px, 28vw, 320px);
    transform: rotate(58deg);
    transform-origin: top right;
    opacity: 0.34;
}

.fz-values__bar--tr-2 {
    top: 4%;
    right: 10%;
    height: clamp(130px, 22vw, 260px);
    transform: rotate(42deg) scale(0.85);
    transform-origin: top right;
    opacity: 0.28;
}

.fz-values__bar--tr-3 {
    top: 14%;
    right: 18%;
    height: clamp(100px, 16vw, 200px);
    transform: rotate(26deg) scale(0.7);
    transform-origin: top right;
    opacity: 0.22;
}

/* Pasangan kiri-bawah — arah berlawanan, menyapu ke kanan-atas */
.fz-values__bar--bl-1 {
    bottom: 6%;
    left: -2%;
    height: clamp(200px, 34vw, 380px);
    transform: rotate(-52deg);
    transform-origin: bottom left;
    opacity: 0.3;
}

.fz-values__bar--bl-2 {
    bottom: 18%;
    left: 6%;
    height: clamp(120px, 20vw, 240px);
    transform: rotate(-38deg) scale(0.75);
    transform-origin: bottom left;
    opacity: 0.2;
    filter: hue-rotate(165deg) saturate(1.1) brightness(1.15);
}

.fz-values__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(28, 153, 254, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 65% 45% at 0% 100%, rgba(75, 139, 249, 0.1) 0%, transparent 50%);
}

.fz-values__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--fz-block-gap, 2.5rem);
    padding-bottom: 0 !important;
}

.fz-values__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fz-primary, #4b8bf9);
    background: rgba(75, 139, 249, 0.1);
    border: 1px solid rgba(75, 139, 249, 0.2);
}

.fz-values__header h2 {
    margin: 0 0 1rem !important;
    font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
    line-height: 1.25 !important;
    color: var(--fz-primary-dark, #3a6fd4) !important;
}

.fz-values__header p {
    margin: 0 auto !important;
    max-width: 640px;
    color: #5a6278 !important;
    line-height: 1.75 !important;
}

.fz-values__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 22px);
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.fz-values-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(18px, 2.5vw, 28px);
    margin: 0;
    padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 32px);
    background: #fff;
    border: 1px solid rgba(75, 139, 249, 0.12);
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(26, 26, 46, 0.04),
        0 8px 24px rgba(75, 139, 249, 0.06);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.fz-values-item:hover {
    transform: translateX(4px);
    border-color: rgba(75, 139, 249, 0.28);
    box-shadow:
        0 4px 8px rgba(26, 26, 46, 0.04),
        0 16px 32px rgba(75, 139, 249, 0.1);
}

.fz-values-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--fz-gradient, linear-gradient(135deg, #4b8bf9 0%, #1c99fe 100%));
    box-shadow: 0 8px 20px rgba(75, 139, 249, 0.25);
    color: #fff;
}

.fz-values-item__icon i {
    font-size: 26px;
    line-height: 1;
}

.fz-values-item[data-value="0"] .fz-values-item__icon {
    background: linear-gradient(135deg, #4b8bf9 0%, #1c99fe 100%);
}

.fz-values-item[data-value="1"] .fz-values-item__icon {
    background: linear-gradient(135deg, #3a6fd4 0%, #4b8bf9 100%);
}

.fz-values-item[data-value="2"] .fz-values-item__icon {
    background: linear-gradient(135deg, #1c99fe 0%, #38bdf8 100%);
}

.fz-values-item__body {
    flex: 1;
    min-width: 0;
}

.fz-values-item__title {
    margin: 0 0 0.5rem !important;
    padding: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: var(--fz-primary-dark, #1a1a2e) !important;
}

.fz-values-item__text {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #5a6278 !important;
}

/* Garis penghubung antar item (desktop) */
@media (min-width: 768px) {
    .fz-values__list {
        padding-left: 28px;
    }

    .fz-values__list::before {
        content: "";
        position: absolute;
        left: 55px;
        top: 48px;
        bottom: 48px;
        width: 2px;
        background: linear-gradient(
            180deg,
            rgba(75, 139, 249, 0.35) 0%,
            rgba(28, 153, 254, 0.2) 50%,
            rgba(75, 139, 249, 0.1) 100%
        );
        border-radius: 2px;
        pointer-events: none;
    }

    .fz-values-item__icon {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 991px) {
    .fz-values__bar--tr-3,
    .fz-values__bar--bl-2 {
        display: none;
    }

    .fz-values__bar--tr-1,
    .fz-values__bar--tr-2 {
        right: -4%;
        opacity: 0.22;
    }

    .fz-values__bar--bl-1 {
        left: -8%;
        opacity: 0.2;
    }
}

@media (max-width: 575px) {
    .fz-values__bars {
        display: none;
    }

    .fz-values-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px 20px;
    }

    .fz-values__list::before {
        display: none;
    }

    .fz-values__list {
        padding-left: 0;
    }
}
