/* Technology Section */
.technology-section {
    padding: 100px 20px;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 20px;
}

.tech-card {
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tech-card:hover::before {
    transform: translateX(100%);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--primary);
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.tech-features {
    list-style: none;
}

.tech-features li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
    opacity: 0.9;
}

.tech-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Technical Metrics */
.tech-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 4rem auto;
    max-width: 1200px;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: 10px;
    min-width: 180px;
    backdrop-filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.metric-card.hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
    border-color: transparent;
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--primary);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card.hover .metric-value {
    transform: scale(1.1);
    text-shadow: 0 0 20px var(--primary);
}

.metric-label {
    font-size: 1.1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card.hover .metric-label {
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--text);
}

/* Integration Showcase */
.tech-showcase {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
}

.showcase-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}

.logo-item.hover {
    transform: scale(1.3);
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.logo-item i {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-item span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.logo-item.hover i {
    transform: scale(1.2);
    text-shadow: 0 0 30px var(--primary);
    color: #ff3333;
}

.logo-item.hover span {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .tech-metrics {
        gap: 1.5rem;
    }

    .metric-card {
        min-width: 150px;
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .integration-logos {
        gap: 2rem;
    }

    .logo-item i {
        font-size: 2rem;
    }

    .logo-item.hover {
        transform: scale(1.2);
    }
}
