﻿/* Resetare și setări de bază */
.body-800 {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    margin: 0;
    padding: 1rem;
}

@media (min-width: 640px) {
    .body-800 {
        padding: 2rem;
    }
}

/* Container principal */
.container-800 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Stiluri pentru Noul Header --- */
.text-content-800 {
    margin-bottom: 3rem;
    text-align: center; /* Am centrat containerul de text */
}

.title-container-800 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

    .title-container-800 svg {
        width: 50px;
        height: auto;
        flex-shrink: 0;
        transform: translateY(-5px);
    }

.title-text-stack-800 {
    text-align: left;
}

.hero-title-800 {
    font-size: 1.2rem !important;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.group-title-800 {
    transform: translateY(-4px);
    white-space: nowrap; /* CHEIA: Forțează textul să rămână pe o singură linie */
    margin: 0;
}

.highlight-red-800 {
    color: #e50914;
    font-size: 1.5rem;
    font-weight: 700;
}

.group-subtitle-800 {
    color: #bbbbbb;
    font-size: 1.2rem !important;
    transform: translateY(-10px);
    margin: 0;
}


/* --- Stiluri pentru Grila de Comparație --- */

.comparison-grid-800 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem; /* Spațiu adăugat după noul header */
}

@media (min-width: 1024px) {
    .comparison-grid-800 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Carduri de produs */
.card-800 {
    border: 1px solid;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card--apacks-800 {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}

.card--competitor-800 {
    border-color: #4B5563;
    background-color: rgba(55, 65, 81, 0.3);
    animation: flicker 1.5s infinite alternate;
}

.card__title-800 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.card__title--competitor-800 {
    color: #9CA3AF;
}

.brand-red-800 {
    color: #EF4444;
}

.card__subtitle-800 {
    color: #D1D5DB;
    margin-top: 0.5rem;
}

.card__subtitle--competitor-800 {
    color: #9CA3AF;
}

.card__gauge-wrapper-800 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Stiluri pentru vitezometru (Gauge) */
.gauge-800 {
    width: 250px;
    height: 125px;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    position: relative;
    overflow: hidden;
}

.gauge--apacks-800 {
    background-image: linear-gradient(to top, #7f1d1d, #dc2626, #fb923c);
}

.gauge--competitor-800 {
    background-image: linear-gradient(to top, #374151, #6b7280, #9ca3af);
}

.gauge-needle-800 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 110px;
    background-color: white;
    transform-origin: bottom center;
    transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.gauge-needle--competitor-800 {
    background-color: #D1D5DB;
    transition: transform 0.8s ease-in-out;
}

.gauge-center-800 {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 10;
}

.gauge-center--apacks-800 {
    background: #111827;
    border: 2px solid white;
}

.gauge-center--competitor-800 {
    background: #9CA3AF;
}

.gauge-label-800 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 900;
    font-size: 1.875rem;
}

.gauge-label--apacks-800 {
    color: white;
}

.gauge-label--competitor-800 {
    color: #9CA3AF;
}

.degree-symbol-800 {
    font-size: 1.25rem;
    vertical-align: super;
}

/* Lista de beneficii */
.benefits-list-800 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    color: #D1D5DB;
}

.benefit-800 {
    display: flex;
    align-items: flex-start;
}

    .benefit-800 strong {
        color: white;
    }

.benefit__icon-800 {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.benefit--pro-800 .benefit__icon-800 {
    color: #ffffff;
}

.benefit--con-800 .benefit__icon-800 {
    color: #ef4444;
}


/* Animații */
@keyframes flicker {
    0%, 100% {
        box-shadow: 0 0 5px rgba(107, 114, 128, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(107, 114, 128, 0.5);
    }
}

.fade-in-element-800 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section-800.is-visible .fade-in-element-800 {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries pentru mobil */
@media (max-width: 768px) {
    .hero-title-800 {
        font-size: 1.5rem;
    }

    .highlight-red-800 {
        font-size: 1.25rem;
    }

    .group-subtitle-800 {
        font-size: 1rem;
    }
}
