body.landing-body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 80px 0 20px 0;
}

/* Video */
.landing-overlay{
    background: rgba(0,0,0,0.7);
}
/* pagina principala */
.landing-card{
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--text-main);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
/* scrollbar */
.landing-card::-webkit-scrollbar{
    width: 5px;
}

.landing-card::-webkit-scrollbar-thumb{
    background-color: var(--accent);
    border-radius: 3px;
}

.landing-h1{
    font-size: 3rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.subtitle{
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.divider{
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    margin: 20px 0;
}
/* introducerea */
.doc-section{
    text-align: justify;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.doc-section p{
    font-size: 1rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.doc-title{
    color: var(--accent);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list{
    list-style: none;
    padding-left: 10px;
}

.detail-list li{
    margin-bottom: 10px;
    font-size: 1rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* apis */
.tech-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.tech-item{
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px;
}

.tech-head{
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.tech-body{
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
    font-family: monospace;
}

.tech-body code{
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 4px;
    border-radius:  3px;
    color: var(--accent);
}
/* ce face aplicatia */
.features-grid-small{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.f-item{
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
    border: 1px solid transparent;
    transition: 0.3s;
}

.f-item:hover{
    border-color: var(--accent);
    background: rgba(56, 189, 248, 0.05);
}

.f-item i{
    color: var(--accent);
}
/* cta */
.launch-btn{
    display: inline-block;
    background: var(--accent);
    color: black;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    margin-top: 10px;
    text-transform: uppercase;
}

.launch-btn:hover{
    background: white;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
    transform: scale(1.1);
}
/* pasii de urmat */
.steps-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.step-card{
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover{
    background: rgba(255,255,255,0.07);
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.step-number{
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    font-family: "Oswald", sans-serif;
    pointer-events: none;
}
.step-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.step-card h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.step-card p{
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
    text-align: left;
}

/* Responsive */
@media (max-width: 900px)
{
    .landing-card{
        width: 75%;
        padding: 25px;
        margin-top: 20px;
    }
    .landing-h1{
        font-size: 2.2rem;
    }
    .tech-box{
        grid-template-columns: 1fr;
    }
    .features-grid-small{
        grid-template-columns: 1fr;
    }
}