.fcs-card-b54dc87e {
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    padding: 24px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

.fcs-card-b54dc87e:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fcs-card-content-b54dc87e {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 16px;
}

.fcs-tag-b54dc87e {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 16px;
}

.fcs-card-title-b54dc87e {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.fcs-card-desc-b54dc87e {
    font-size: 13px;
    color: #666;
    margin: 0 0 24px 0;
}

.fcs-result-wrap-b54dc87e {
    margin-bottom: 24px;
}

.fcs-result-number-b54dc87e {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.fcs-result-label-b54dc87e {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    display: block;
}

.fcs-stats-b54dc87e {
    display: flex;
    gap: 24px;
    margin-top: auto;
}

.fcs-stat-item-b54dc87e {
    display: flex;
    flex-direction: column;
}

.fcs-stat-label-b54dc87e {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.fcs-stat-value-b54dc87e,
.fcs-stat-value-after-b54dc87e {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.fcs-card-image-wrap-b54dc87e {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcs-mockup-img-b54dc87e {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -5px 10px 20px rgba(0,0,0,0.05);
}

.fcs-arrow-btn-b54dc87e {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.fcs-arrow-btn-b54dc87e svg {
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
}

.fcs-card-b54dc87e:hover .fcs-arrow-btn-b54dc87e svg {
    transform: rotate(0deg);
}

.fcs-card-b54dc87e:hover .fcs-arrow-btn-b54dc87e {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .fcs-card-b54dc87e {
        flex-direction: column;
    }
    .fcs-card-content-b54dc87e {
        padding-right: 0;
        margin-bottom: 24px;
    }
    .fcs-arrow-btn-b54dc87e {
        bottom: -10px;
        right: -10px;
    }
}