/* Enhanced IoT Marketing Styles */
.iot-hero-header h1 {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 1.5rem !important;
}

.gradient-cta {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gradient-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43,88,118,0.3);
}

.gradient-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 75%);
    animation: cta-shine 3s infinite;
}

@keyframes cta-shine {
    100% { transform: translateX(100%); }
}

.trust-badges img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.trust-badges img:hover {
    transform: scale(1.05);
}

.value-prop-item {
    border-left: 4px solid #2b5876 !important;
}

.value-prop-item h3 i {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .iot-hero-header h1 {
        font-size: 2.5rem;
    }
    
    .gradient-cta {
        width: 100%;
        margin-bottom: 1rem;
    }
}
