/* FZ Group — Mengapa FZ Group? (Company home overview) */

.fz-why {
    position: relative;
    padding: var(--fz-section-y, clamp(56px, 8vw, 96px)) 0;
    overflow: hidden;
    background: #fff;
}

/* Pola bar diagonal (Boltu apps-overview) — kiri & kanan */
.fz-why__bars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fz-why__bar {
    position: absolute;
    z-index: 0;
    width: auto;
    max-width: none;
    height: clamp(220px, 38vw, 420px);
    opacity: 0.42;
    filter: hue-rotate(155deg) saturate(1.15) brightness(1.05);
    object-fit: contain;
}

.fz-why__bar--1 {
    left: -4%;
    top: 18%;
    transform: rotate(-8deg);
}

.fz-why__bar--2 {
    left: -7%;
    top: 24%;
    transform: rotate(-6deg);
    opacity: 0.32;
}

.fz-why__bar--3 {
    left: -10%;
    top: 32%;
    transform: rotate(-4deg);
    opacity: 0.24;
}

.fz-why__bar--4 {
    right: -6%;
    top: 20%;
    left: auto;
    transform: scaleX(-1) rotate(-8deg);
    opacity: 0.28;
}

.fz-why__bar--5 {
    right: -9%;
    top: 30%;
    left: auto;
    transform: scaleX(-1) rotate(-5deg);
    opacity: 0.2;
}

.fz-why__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(75, 139, 249, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 100% 80%, rgba(28, 153, 254, 0.07) 0%, transparent 50%);
}

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

.fz-why__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-why__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-why__header p {
    margin: 0 auto !important;
    max-width: 680px;
    color: #5a6278 !important;
    line-height: 1.75 !important;
}

.fz-why__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.5vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.fz-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
    background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
    border: 1px solid rgba(75, 139, 249, 0.14);
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(26, 26, 46, 0.04),
        0 10px 28px rgba(75, 139, 249, 0.07);
    text-align: left;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.fz-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: var(--fz-gradient, linear-gradient(90deg, #4b8bf9, #1c99fe));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fz-why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(75, 139, 249, 0.32);
    box-shadow:
        0 4px 8px rgba(26, 26, 46, 0.04),
        0 18px 36px rgba(75, 139, 249, 0.12);
}

.fz-why-card:hover::before {
    opacity: 1;
}

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

.fz-why-card__icon i {
    font-size: 26px;
    line-height: 1;
}

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

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

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

.fz-why-card__badge {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fz-primary, #4b8bf9);
    background: rgba(75, 139, 249, 0.1);
}

.fz-why-card__title {
    margin: 0 0 0.75rem !important;
    padding: 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: var(--fz-primary-dark, #1a1a2e) !important;
}

.fz-why-card__text {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #5a6278 !important;
}

@media (max-width: 991px) {
    .fz-why__bar--4,
    .fz-why__bar--5 {
        display: none;
    }

    .fz-why__bar {
        height: clamp(180px, 32vw, 280px);
        opacity: 0.28;
    }

    .fz-why__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

@media (min-width: 992px) and (max-width: 1199px) {
    .fz-why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .fz-why-card {
        padding: 22px 18px;
    }
}
