
.premium-innovation-hero {
    background: #050a18;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.premium-innovation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0.3; transform: scale(1); }
    to { opacity: 0.6; transform: scale(1.1); }
}

.pih-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.pih-content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.pih-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pih-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    color: #00f2ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pih-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pih-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.pih-actions {
    display: flex;
    gap: 20px;
}

.pih-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pih-btn-primary {
    background: #00f2ff;
    color: #050a18;
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.4);
}

.pih-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 255, 0.6);
}

.pih-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.pih-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pih-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pih-visual.is-visible {
    opacity: 1;
    transform: scale(1);
}

.pih-image-wrap {
    position: relative;
    width: 100%;
    max-width: 450px;
    z-index: 1;
}

.pih-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pih-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Light particles */
.pih-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00f2ff;
    border-radius: 50%;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .pih-container {
        flex-direction: column;
        text-align: center;
    }
    .pih-title {
        font-size: 40px;
    }
    .pih-actions {
        justify-content: center;
    }
}
