/* ================================================
   Solution Section - 画像下に特徴3つ配置
   ================================================ */

.product-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.showcase-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.feature-item-vertical {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    text-align: center;
    justify-content: center;
}

.feature-content {
    text-align: center;
    max-width: 700px;
}

.feature-item {
    text-align: left;
    padding: 0 20px;
}

.feature-number {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,153,255,0.2));
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: center;
}

.feature-description {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    text-align: center;
}

/* ================================================
   Use Case Section - 画像幅修正
   ================================================ */

.usecase-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin: 15px auto;
    display: block;
}

.usecase-before,
.usecase-after {
    text-align: center;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .showcase-features {
        gap: 30px;
    }
    
    .feature-item {
        padding: 0 15px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .usecase-image {
        max-width: 100%;
    }
}
