/* Resetare și stiluri de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a192f;
    color: #e6f1ff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Container general */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigație */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #64ffda;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Secțiunea Hero */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0 80px;
    min-height: 85vh;
}

h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #64ffda, #00a3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 50px;
    color: #a8b2d1;
}

/* Formular */
.form-container {
    background: linear-gradient(145deg, #112240, #0d1b2a);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #64ffda;
    border-radius: 8px;
    background-color: #0a192f;
    color: #e6f1ff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #00a3ff;
    box-shadow: 0 0 8px rgba(0,163,255,0.4);
}

button {
    background: linear-gradient(45deg, #64ffda, #00a3ff);
    color: #0a192f;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 163, 255, 0.3);
}

/* === FEATURES Section (îmbunătățit) === */
.features {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a192f, #112240);
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 2.6rem;
    font-weight: 700;
    color: #64ffda;
    letter-spacing: 1px;
}

/* Grid Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* === FEATURES Section Neon Style === */
.features {
    padding: 120px 20px;
    background: radial-gradient(circle at top, #0a192f, #0d1b2a 80%);
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 2.8rem;
    font-weight: 800;
    color: #64ffda;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(100, 255, 218, 0.6);
}

/* Grid Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Carduri Neon - versiune mai lizibilă */
.feature-card {
    position: relative;
    background: rgba(10, 25, 47, 0.95); /* mai solid, mai puțină transparență */
    padding: 45px 30px;
    border-radius: 15px;
    text-align: center;
    color: #e6f1ff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Border neon mai subtil */
.feature-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(100,255,218,0.6), rgba(0,163,255,0.6), rgba(100,255,218,0.6));
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(4px); /* blur mai mic */
    opacity: 0.5;       /* mai puțin intens */
    animation: neonPulse 8s linear infinite;
}

/* Hover */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Icon */
.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #64ffda;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.4); /* glow mai mic */
    animation: float 3s ease-in-out infinite;
}

/* Titlu */
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff; /* alb solid */
    text-shadow: none; /* scoatem glow-ul */
}

/* Text */
.feature-card p {
    color: #c9d6e9;  /* gri deschis, bun pentru citire */
    font-size: 1.05rem;
    line-height: 1.6;
}
/* Animații */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@keyframes neonPulse {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Testimoniale */
.testimonials {
    padding: 100px 0;
    text-align: center;
}

.testimonial {
    max-width: 850px;
    margin: 0 auto 30px;
    padding: 50px;
    background: linear-gradient(145deg, #112240, #0d1b2a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    animation: fadeInUp 1.2s ease;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #dbe2f0;
}

.testimonial-author {
    font-weight: 700;
    color: #64ffda;
}

/* CTA final */
.cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a192f, #112240);
    border-radius: 12px;
    margin: 60px auto;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #64ffda;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #a8b2d1;
}

.cta button {
    width: auto;
    padding: 15px 40px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #a8b2d1;
    font-size: 15px;
    border-top: 1px solid #1c2e4a;
}

/* Animations */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 2vw;
    }
    nav {
        padding: 10px 10px;
    }
    .hero {
        padding: 110px 5px 60px;
    }
    .form-container {
        padding: 15px;
    }
    .features, .cta, .testimonials {
        padding: 40px 5px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .feature-card {
        padding: 25px 10px;
    }
    .testimonial {
        padding: 15px;
    }
}
