/* Technical Specifications Section */
.tech-specs {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-category {
    padding: 2rem;
    background: white;
    border: 1px solid #f8fafc;
    border-radius: 16px;
    transition: all 0.3s;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.tech-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.tech-category-title svg {
    color: #10b981;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.3s;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #10b981, #6366f1);
    color: white;
    transform: scale(1.05);
}

.requirements-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(99, 102, 241, 0.05));
    border: 2px solid #10b981;
    border-radius: 20px;
}

.requirements-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.requirements-title svg {
    color: #10b981;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.requirement-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requirement-value {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}