/* Hero Showcase Styles */
.hero-showcase {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    perspective: 1000px;
}

.main-qr-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
    animation: floatMain 6s ease-in-out infinite;
}

.qr-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.qr-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.qr-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.qr-info p {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.qr-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.qr-code {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 3px;
    max-width: 200px;
    margin: 0 auto;
}

.qr-pixel {
    aspect-ratio: 1;
    background: #000;
    border-radius: 2px;
}

.qr-pixel.light {
    background: #fff;
}

.qr-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.stat-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.qr-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.action-btn {
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-secondary {
    background: white;
    border: 2px solid #e0e0e0;
    color: #333;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.float-1 {
    top: -20px;
    right: -30px;
    width: 80px;
    height: 80px;
    animation: float1 7s ease-in-out infinite;
    z-index: 1;
}

.float-2 {
    bottom: 40px;
    left: -40px;
    width: 90px;
    height: 90px;
    animation: float2 8s ease-in-out infinite;
    z-index: 1;
}

.float-3 {
    top: 50%;
    right: -50px;
    width: 70px;
    height: 70px;
    animation: float3 6s ease-in-out infinite;
    z-index: 1;
}

.mini-qr {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.mini-qr.colored-1 {
    background: 
        repeating-linear-gradient(
            45deg,
            #667eea 0px, #667eea 4px,
            transparent 4px, transparent 8px
        );
}

.mini-qr.colored-2 {
    background: 
        repeating-linear-gradient(
            -45deg,
            #10b981 0px, #10b981 4px,
            transparent 4px, transparent 8px
        );
}

.mini-qr.colored-3 {
    background: 
        repeating-linear-gradient(
            135deg,
            #f59e0b 0px, #f59e0b 4px,
            transparent 4px, transparent 8px
        );
}

/* Animations */
@keyframes floatMai