/* Compliance & Safety Showcase Styles */
.compliance-showcase {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.compliance-header {
    text-align: center;
    margin-bottom: 20px;
}

.compliance-title {
    font-weight: 600;
    color: var(--mud-palette-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.compliance-subtitle {
    color: var(--mud-palette-text-secondary);
    font-style: italic;
}

/* Safety Badges Grid */
.safety-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.safety-badge {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .safety-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.badge-description {
    text-align: center;
    font-weight: 500;
    color: var(--mud-palette-text-secondary);
}

/* Safety Stats */
.safety-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.stat-label {
    font-weight: 500;
    color: var(--mud-palette-text-secondary);
    line-height: 1.2;
}

/* H&S Features Highlight */
.hs-features-highlight {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    border-left: 4px solid var(--mud-palette-primary);
}

.features-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--mud-palette-primary);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    transition: background 0.2s ease;
}

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.8);
    }

/* Enhanced Play Button */
.play-button {
    margin-top: 20px;
    font-size: 1.1rem !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(45deg, var(--mud-palette-primary), var(--mud-palette-secondary)) !important;
    color: white !important;
}

    .play-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    }

/* Partnership Badge Styles */
.partnership-badge {
    margin-top: 24px;
    animation: slideInFromLeft 0.8s ease 0.5s both;
}

.partnership-alert {
    border-radius: 12px !important;
    border-width: 2px !important;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .partnership-content .mud-icon {
        color: var(--mud-palette-success) !important;
    }

/* Enhanced Brand Styles */
.brand-title {
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin: 16px 0 !important;
}

.brand-subtitle {
    color: var(--mud-palette-text-secondary) !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
}

/* Animation Keyframes */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dark Mode Adjustments */
.mud-theme-dark .compliance-showcase {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    border-color: rgba(33, 150, 243, 0.2);
}

.mud-theme-dark .safety-stats {
    background: rgba(0, 0, 0, 0.3);
}

.mud-theme-dark .hs-features-highlight {
    background: rgba(0, 0, 0, 0.2);
}

.mud-theme-dark .feature-item {
    background: rgba(0, 0, 0, 0.3);
}

    .mud-theme-dark .feature-item:hover {
        background: rgba(0, 0, 0, 0.5);
    }

.mud-theme-dark .partnership-alert {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
}

/* Responsive Design */
@@media (max-width: 768px) {
    .compliance-showcase {
        padding: 16px;
        margin: 16px 0;
    }

    .safety-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .safety-stats {
        flex-direction: column;
        gap: 12px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .partnership-badge {
        margin-top: 16px;
    }

    .partnership-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Animation for badges */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-item {
    animation: fadeInUp 0.6s ease forwards;
}

    .badge-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .badge-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .badge-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .badge-item:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Value Propositions Styles */
.value-props {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.value-prop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

    .value-prop-item:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.1);
    }

    .value-prop-item .mud-text {
        font-weight: 600;
        text-align: center;
        color: var(--mud-palette-text-primary);
    }

/* Dark Mode Value Props */
.mud-theme-dark .value-props {
    background: rgba(0, 0, 0, 0.2);
}

.mud-theme-dark .value-prop-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Value Props */
@@media (max-width: 768px) {
    .value-props {
        flex-wrap: wrap;
        gap: 16px;
    }

    .value-prop-item {
        flex: 1;
        min-width: 120px;
    }
}

@@media (max-width: 480px) {
    .value-props {
        flex-direction: column;
        gap: 12px;
    }

    .value-prop-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}