
/* Digital Innovation Specific Styles */
.digital-innovation-container {
    min-height: 100vh;
}

/* Hero Section - Digital Innovation Theme */
.digital-innovation-container .hero-section {
    background: linear-gradient(135deg, var(--naranjaps) 0%,  var(--naranjaps) 50%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="digital-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23digital-grid)"/></svg>');
    opacity: 0.4;
}

/* Core Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Feature Card */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.feature-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-card .card-description {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    text-align: center;
}

.feature-card .card-footer {
    margin-top: 2rem;
    text-align: center;
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.tech-stack-section .section-title,
.tech-stack-section .section-subtitle {
    color: #374151;
}

.tech-stack-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.tech-stack-logos img {
    height: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tech-stack-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background: #374151;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Responsive Design for Digital Innovation */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack-logos {
        justify-content: space-around;
    }

    .tech-stack-logos img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
    }

    .features-section {
        padding: 3rem 0;
    }

    .tech-stack-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }
}
