/* additional styles for technical sheets */
.tech-hero {
    padding: 150px 10% 60px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.15), transparent 70%);
}

.tech-content-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.tech-card {
    background: #16181d;
    /* Fallback */
    background: rgba(22, 24, 29, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
}

.tech-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 700;
}

.tech-description {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tech-description p {
    margin-bottom: 1.5rem;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-spec-icon {
    font-size: 1.5rem;
    color: #6366f1;
}

.tech-cta-box {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.tech-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.tech-price-tag span {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 400;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
}

.back-link:hover {
    color: #6366f1;
    transform: translateX(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Logo Styles */
.product-logo-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
    /* Add glow for coolness */
}

.tech-screenshot {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.tech-screenshot:hover {
    transform: scale(1.02);
}