/* section story-section */
        /* Story Section - Webflow Style */
        .story-section {
            background: var(--bg-primary);
            padding: 120px 5%;
        }

        .story-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Problem Phase */
        .problem-phase {
            margin-bottom: 8rem;
        }

        .phase-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--primary);
            margin-bottom: 4rem;
            font-weight: 800;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .problem-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 4px solid var(--secondary);
            opacity: 0;
            transform: translateY(50px);
        }

        .problem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .problem-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            color: white;
            box-shadow: 0 0.5rem 1.25rem rgba(236, 64, 122, 0.3);
        }
        
        .problem-icon i {
            font-size: 1.5rem;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .problem-card p {
            color: var(--gray);
            line-height: 1.6;
        }


        @keyframes bounce-arrow {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }


        /* Story Section Media Queries */
@media (max-width: 48rem) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}