/* Hero Features Grid - Modern Replacement for Floating Cards */

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 92, 0.05) 0%, 
        rgba(0, 194, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 194, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 194, 255, 0.15),
        0 0 0 1px rgba(0, 194, 255, 0.2);
}

.hero-feature-card:hover::before {
    opacity: 1;
}

.hero-feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-feature-card:hover .hero-feature-icon {
    transform: scale(1.1);
}

.hero-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-feature-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00C2FF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-feature-link:hover {
    color: #FF005C;
    gap: 8px;
}

.hero-feature-link::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-feature-link:hover::after {
    transform: translateX(3px);
}

/* Animation for entrance */
@keyframes featureSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-feature-card {
    animation: featureSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-feature-card:nth-child(1) { animation-delay: 0.1s; }
.hero-feature-card:nth-child(2) { animation-delay: 0.2s; }
.hero-feature-card:nth-child(3) { animation-delay: 0.3s; }
.hero-feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .hero-feature-card {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .hero-features-grid {
        gap: 16px;
        margin-top: 30px;
    }
    
    .hero-feature-card {
        padding: 16px;
    }
    
    .hero-feature-title {
        font-size: 15px;
    }
    
    .hero-feature-description {
        font-size: 12px;
    }
}

/* Integration with existing hero layout */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gradient-artwork {
    margin-bottom: 40px;
}

/* Remove old floating card styles */
.floating-cards-container,
.floating-card,
.card-1, .card-2, .card-3, .card-4,
.card-icon, .card-content, .card-title, .card-desc, .card-arrow {
    display: none !important;
}