@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.wa-fbp-section {
    width: 100%;
    background: #000000;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
}

.wa-fbp-header {
    margin-bottom: 60px;
}

.wa-fbp-main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.wa-fbp-main-desc {
    font-size: 18px;
    color: #888888;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.wa-fbp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.wa-fbp-card {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle default border */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wa-fbp-card:hover {
    background: #111111;
    transform: translateY(-5px);
}

.wa-fbp-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.wa-fbp-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.wa-fbp-placeholder-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E") no-repeat center;
}

.wa-fbp-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.wa-fbp-card-desc {
    font-size: 15px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .wa-fbp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wa-fbp-grid {
        grid-template-columns: 1fr;
    }
    .wa-fbp-main-title {
        font-size: 32px;
    }
}
