/* ============================================================
   BFL — WHY CHOOSE SPLIT  +  WHAT WE DO
   Charte : #1C1C1C | #E8500A | #2BAF80 | Plus Jakarta Sans
   ============================================================ */


/* ── WHY CHOOSE SPLIT ──────────────────────────────────────── */

.bfl-wcs-section {
    background: var(--steel);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 7%;
}

.bfl-wcs-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
    margin-top: 10px;
    margin-bottom: 28px;
    max-width: 540px;
}


/* LEFT column */

.bfl-wcs-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bfl-wcs-title {
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.3px;
    line-height: 1.18;
    margin: 10px 0 3px;
}

.bfl-wcs-title-accent {
    color: var(--orange);
}


/* Features */

.bfl-wcs-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.bfl-wcs-feature {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bfl-wcs-feat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--teal);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s, transform 0.2s;
}

.bfl-wcs-feature:hover .bfl-wcs-feat-icon {
    background: #c94108;
    transform: scale(1.06);
}

.bfl-wcs-feat-icon svg {
    flex-shrink: 0;
}

.bfl-wcs-feat-body h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.bfl-wcs-feat-body p {
    font-size: 16px;
    color: #777;
    line-height: 1.62;
    margin: 0;
}


/* Skill bar */

.bfl-wcs-skill {
    margin-top: 4px;
}

.bfl-wcs-skill-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bfl-wcs-skill-pct {
    color: var(--orange);
}

.bfl-wcs-skill-bar {
    height: 5px;
    background: #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.bfl-wcs-skill-fill {
    height: 100%;
    background: linear-gradient(to right, var(--orange), #f57c3c);
    border-radius: 3px;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* RIGHT column — double image */

.bfl-wcs-right {
    position: relative;
    height: 480px;
}

.bfl-wcs-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 88%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bfl-wcs-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
}

.bfl-wcs-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.76rem;
    text-align: center;
}

.bfl-wcs-img-ph--main {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: #4a4a4a;
    border-radius: var(--radius-lg);
}


/* Secondary image (bottom-left overlap) */

.bfl-wcs-img-secondary {
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 44%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.bfl-wcs-sec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bfl-wcs-img-ph--sec {
    background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
    color: var(--white);
    width: 100%;
    height: 100%;
}


/* Play button overlay */

.bfl-wcs-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}


/*
.bfl-wcs-play-btn svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    padding: 8px;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 16px rgba(232, 80, 10, 0.45);
}
*/

.bfl-wcs-play-btn svg {
    display: none;
}

.bfl-wcs-img-secondary:hover .bfl-wcs-play-btn svg {
    transform: scale(1.12);
    background: #c94108;
}


/* ── WHAT WE DO ─────────────────────────────────────────────── */

.bfl-wwd-section {
    background: var(--steel);
    padding: 100px 7%;
}

.bfl-wwd-header {
    text-align: center;
    margin-bottom: 64px;
}

.bfl-wwd-title {
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin: 8px 0 0;
}

.bfl-wwd-accent {
    color: var(--orange);
}


/* 4-column grid */

.bfl-wwd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* Card */

.bfl-wwd-card {
    background: var(--gray);
    border-radius: var(--radius-lg);
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--trans);
}

.bfl-wwd-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}


/* Image overlap */

.bfl-wwd-card-img {
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.bfl-wwd-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.75);
    transition: filter 0.3s, transform 0.4s;
}

.bfl-wwd-card:hover .bfl-wwd-card-img img {
    filter: brightness(0.85) saturate(0.9);
    transform: scale(1.05);
}

.bfl-wwd-img-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
}


/* Large ghost number */

.bfl-wwd-num {
    position: absolute;
    bottom: 8px;
    right: 14px;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -2px;
}


/* Card body */

.bfl-wwd-card-body {
    padding: 24px 22px;
    flex: 1;
    background: var(--gray);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: relative;
}


/* Orange top accent on hover */

.bfl-wwd-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.bfl-wwd-card:hover .bfl-wwd-card-body::before {
    transform: scaleX(1);
}

.bfl-wwd-card-body h4 {
    font-family: var(--font-title);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--steel);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
    margin-bottom: 8px;
    transition: color 0.2s;
    text-transform: uppercase;
}

.bfl-wwd-card:hover .bfl-wwd-card-body h4 {
    color: var(--orange);
    text-transform: uppercase;
}

.bfl-wwd-card-body p {
    font-size: 16px;
    color: #777;
    line-height: 1.65;
    margin: 0;
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .bfl-wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .bfl-wcs-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .bfl-wcs-right {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .bfl-wcs-section,
    .bfl-wwd-section {
        padding: 64px 5%;
    }
    .bfl-wcs-right {
        height: 320px;
    }
    .bfl-wcs-img-secondary {
        width: 50%;
        bottom: -16px;
    }
    .bfl-wwd-grid {
        grid-template-columns: 1fr;
    }
}