/* Use Cases Section - Cocok Untuk Bisnis Anda */

.use-cases-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.use-cases-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.use-cases-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
    border-color: var(--primary-color);
}

.use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.use-case-icon .icon-large {
    width: 36px;
    height: 36px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.use-case-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    text-align: center;
}

.use-case-desc {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 45px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: #fff5f5;
    transform: translateX(5px);
}

.feature-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.feature-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Other Businesses List */
.other-businesses {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
}

.other-businesses h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #444;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.business-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.business-list i {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* Use Case Detail Button */
.use-case-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.use-case-btn:hover {
    background: #c92a2a;
    transform: translateX(5px);
}

/* Button text - Desktop default */
.btn-text-desktop {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

/* CTA at bottom */
.use-cases-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.use-cases-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .use-cases-section {
        padding: 3rem 0;
    }

    .use-cases-section h2 {
        font-size: 1.8rem;
    }

    .use-cases-section .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-case-card {
        padding: 1.5rem;
    }

    .use-case-card h3 {
        font-size: 1.2rem;
    }

    .use-case-desc {
        font-size: 0.9rem;
        min-height: auto;
    }

    .feature-item {
        padding: 0.65rem;
    }

    .feature-item span {
        font-size: 0.85rem;
    }

    .other-businesses {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .other-businesses h3 {
        font-size: 1.1rem;
    }

    .business-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .business-list li {
        font-size: 0.9rem;
    }

    /* Button text switching for mobile */
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }

    .use-cases-cta p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .use-cases-section h2 {
        font-size: 1.5rem;
    }

    .use-case-icon {
        width: 60px;
        height: 60px;
    }

    .use-case-icon .icon-large {
        width: 30px;
        height: 30px;
    }

    .use-case-card h3 {
        font-size: 1.1rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }
}
