/* Import font Play */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Play', sans-serif;
    background-color: #ffffff; 
    color: #333366;
}

/* --- TITLURI GLOBALE --- */
h2 {
    font-size: 2.5rem;
    color: #333366;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center;
    font-weight: 400;
}

h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    color: #333366;
    font-weight: 400;
}

/* --- SECTION: FEATURES --- */
.features {
    padding: 80px 15px;
    background-color: #ffffff;
    text-align: center;
}

.features-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    flex: 0 0 calc(33.33% - 25px); 
    min-width: 300px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    color: #333366;
    box-shadow: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
}

.feature:hover { 
    transform: translateY(-5px);
    border-color: #C9ED8A;
    background: #ffffff;
}

.feature h3 {
    color: #333366;
    border-bottom: 2px solid #C9ED8A;
    padding-bottom: 10px;
    width: 80%;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* --- SECTION: AI --- */
.ai-assistant-full-width {
    width: 100%;
    background-color: #333366; 
    padding: 80px 0;
}

.ai-box-container {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 60px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: none;
    border: 1px solid #C9ED8A;
}

.ai-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.ai-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #333366 !important;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid #C9ED8A !important;
}

.ai-badge i { color: #C9ED8A; }

.ai-box-container h2 {
    color: #333366 !important;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.ai-description {
    color: #555555 !important;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 850px;
    margin-bottom: 30px;
}

.human-support-notice {
    display: inline-block;
    background-color: #f8f9fa;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #333366;
    border: 1px dashed #cccccc;
}

/* --- SECTION: STATISTICI --- */
.stats-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.stats-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-content {
    flex: 1;
    text-align: left;
}

.stats-content h2 {
    text-align: left;
    color: #333366;
}

.stats-badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333366;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-left: 3px solid #C9ED8A;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.stats-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #333366;
    border-left: 2px solid #eeeeee;
}

.stats-list li:hover {
    border-left-color: #C9ED8A;
}

.stats-image { flex: 1; }

.stats-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid #eeeeee;
}

/* --- HERO SECTION REFINAT - LUMINAT PUTIN --- */
.hero-box {
    position: relative !important;
    height: 75vh !important;
    min-height: 550px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #1a1a3d !important; 
}

.hero-bg-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 0.65 !important; /* AM CRESCUT VIZIBILITATEA CLIPULUI */
}

#particles-js {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
}

.hero-overlay-fix {
    position: absolute !important;
    inset: 0 !important;
    /* AM SCAZUT OPACITATEA PENTRU LUMINARE */
    background: linear-gradient(
        to bottom, 
        rgba(26, 26, 61, 0.85), 
        rgba(51, 51, 102, 0.75)
    ) !important; 
    z-index: 1 !important;
}

.hero-content-fix {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    color: #ffffff !important;
    max-width: 900px !important;
    padding: 0 20px !important;
}

.hero-h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Umbra subtila pentru lizibilitate pe clip mai luminos */
}

.hero-p {
    font-size: clamp(1rem, 2vw, 1.1rem) !important;
    margin-bottom: 35px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.scroll-arrow {
    margin-top: 40px !important;
    font-size: 1.5rem !important;
    color: #C9ED8A !important;
    animation: arrow-flicker 2s infinite !important;
}

@keyframes arrow-flicker {
    0% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(15px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.3; }
}

.hero-btns-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
}

.hero-btn-main {
    background-color: transparent !important;
    color: #ffffff !important;
    padding: 15px 40px !important;
    border: 2px solid #C9ED8A !important; 
    border-radius: 2px !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    transition: 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.hero-btn-main:hover {
    background-color: #C9ED8A !important; 
    color: #333366 !important; 
    border-color: #C9ED8A !important;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .feature { flex: 0 0 calc(50% - 25px); }
    .stats-wrapper { flex-direction: column; text-align: center; }
    .stats-content, .stats-content h2 { text-align: center; }
    .stats-list li { border-left: none; border-bottom: 1px solid #eeeeee; padding: 15px 0; }
    .ai-box-container { padding: 40px 20px; }
}

@media (max-width: 768px) {
    .hero-box { 
        height: 70vh !important; 
        min-height: 500px !important;
    }
    .hero-bg-video {
        height: 100% !important;
        width: auto !important; 
    }
    .hero-h1 { font-size: 2rem !important; }
    .hero-p { font-size: 0.95rem !important; margin-bottom: 30px !important; }
    .hero-btn-main { 
        width: 100% !important; 
        max-width: 320px !important; 
        justify-content: center !important;
    }
    .hero-btns-row { flex-direction: column !important; }
    .scroll-arrow { margin-top: 30px !important; }
}