/* What's Different About Luma Widget Styles */
.whats-different-luma {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.whats-different-luma__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.whats-different-luma__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

.whats-different-luma__title-highlight {
    color: #3B82F6;
}

.whats-different-luma__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 60px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whats-different-luma__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.whats-different-luma__feature {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats-different-luma__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.whats-different-luma__icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    background: linear-gradient(135deg, rgba(53, 188, 255, 0.1) 0%, rgba(0, 119, 255, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 1;
}

.whats-different-luma__feature:hover .whats-different-luma__icon-container {
    transform: scale(1.1);
}

.whats-different-luma__icon {
    color: #2878F4;
    width: 26.67px;
    height: 33.34px;
}

.whats-different-luma__feature-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

.whats-different-luma__feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whats-different-luma {
        padding: 40px 0;
    }

    .whats-different-luma__container {
        padding: 0 16px;
    }

    .whats-different-luma__title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .whats-different-luma__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .whats-different-luma__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .whats-different-luma__feature {
        padding: 32px 24px;
    }

    .whats-different-luma__icon-container {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .whats-different-luma__icon {
        width: 24px;
        height: 30px;
    }

    .whats-different-luma__feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .whats-different-luma__feature-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .whats-different-luma {
        padding: 32px 0;
    }

    .whats-different-luma__container {
        padding: 0 12px;
    }

    .whats-different-luma__title {
        font-size: 28px;
    }

    .whats-different-luma__subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .whats-different-luma__grid {
        gap: 20px;
    }

    .whats-different-luma__feature {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .whats-different-luma__icon-container {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .whats-different-luma__icon {
        width: 21.33px;
        height: 26.67px;
    }

    .whats-different-luma__feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .whats-different-luma__feature-description {
        font-size: 14px;
    }
}