.pricing-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #20d9ba, #1ab394);
    color: white;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 6px;
}

.featured .skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 75%
    );
    background-size: 200% 100%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.group-badge {
    height: 24px;
    width: 60px;
    margin-bottom: 16px;
    border-radius: 12px;
}

.title {
    height: 32px;
    width: 180px;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    width: 100%;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text {
    height: 16px;
    flex: 1;
}

.feature-text.short {
    width: 60%;
}

.feature-text.medium {
    width: 80%;
}

.feature-text.long {
    width: 90%;
}

.cta-button {
    height: 48px;
    width: 100%;
    border-radius: 24px;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card {
        padding: 20px;
    }
}

/* Partial grid for demonstration */
.partial-card {
    height: 200px;
}
