/* =====================================
   LANDING PAGE
===================================== */
.landing-hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 0;
}
.hero-content{
    max-width:760px;
    margin:auto;
}
.hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:15px;
    color:var(--text);
}
.hero-content h2{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:20px;
}
.hero-content p{
    font-size:18px;
    color:var(--text-light);
    margin-bottom:40px;
    line-height:1.8;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.features{
    padding:100px 0;
    text-align:center;
}
.features-subtitle{
    color:var(--text-light);
    max-width:700px;
    margin:20px auto 60px;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.feature-card{
    background:var(--surface);
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow);
    transition:.3s;
}
.feature-card:hover{
    transform:translateY(-8px);
}
.feature-icon{
    font-size:55px;
    margin-bottom:20px;
}
.feature-card h3{
    margin-bottom:15px;
}
.feature-card p{
    color:var(--text-light);
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:80px 0;
}
.stat{
    background:var(--surface);
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
}
.stat h2{
    color:var(--primary);
    margin-bottom:8px;
}
.preview{
    padding:90px 0;
    text-align:center;
}
.preview p{
    margin:20px auto 50px;
    max-width:650px;
    color:var(--text-light);
}
.preview-image{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow);
}
.demo-section{
    padding:100px 0;
    text-align:center;
}
.demo-section p{
    margin:20px auto 40px;
    color:var(--text-light);
}
.demo-section video{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow);
}
.cta{
    margin:120px auto;
    background:linear-gradient(135deg,#E53935,#C62828);
    color:white;
    border-radius:35px;
    padding:70px;
    text-align:center;
}
.cta p{
    margin:20px auto 40px;
    max-width:600px;
}
.cta a{
    display:inline-block;
    padding:16px 36px;
    background:var(--surface);
    color:var(--primary);
    border-radius:14px;
    font-weight:700;
}
.footer{
    background:#111827;
    color:white;
    margin-top:120px;
    padding:80px 20px;
}
.footer-content{
    max-width:1200px;
    margin:auto;
    text-align:center;
}
.footer-logo{
    width:90px;
    margin:auto;
    margin-bottom:20px;
}
.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:35px 0;
    flex-wrap:wrap;
}
.footer-links a{
    color:#ddd;
}
.copyright{
    opacity:.7;
}
@media(max-width:768px){
.hero-content h1{
    font-size:2.8rem;
}
.hero-content h2{
    font-size:1.5rem;
}
.stats{
    grid-template-columns:repeat(2,1fr);
}
.cta{
    padding:45px 25px;
}
}/* =====================================
   LANDING PAGE
===================================== */
.landing-hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 0;
}
.hero-content{
    max-width:760px;
    margin:auto;
}
.hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:15px;
    color:var(--text);
}
.hero-content h2{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:20px;
}
.hero-content p{
    font-size:18px;
    color:var(--text-light);
    margin-bottom:40px;
    line-height:1.8;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.features{
    padding:100px 0;
    text-align:center;
}
.features-subtitle{
    color:var(--text-light);
    max-width:700px;
    margin:20px auto 60px;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.feature-card{
    background:var(--surface);
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow);
    transition:.3s;
}
.feature-card:hover{
    transform:translateY(-8px);
}
.feature-icon{
    font-size:55px;
    margin-bottom:20px;
}
.feature-card h3{
    margin-bottom:15px;
}
.feature-card p{
    color:var(--text-light);
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:80px 0;
}
.stat{
    background:var(--surface);
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
}
.stat h2{
    color:var(--primary);
    margin-bottom:8px;
}
.preview{
    padding:90px 0;
    text-align:center;
}
.preview p{
    margin:20px auto 50px;
    max-width:650px;
    color:var(--text-light);
}
.preview-image{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow);
}
.demo-section{
    padding:100px 0;
    text-align:center;
}
.demo-section p{
    margin:20px auto 40px;
    color:var(--text-light);
}
.demo-section video{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow);
}
.cta{
    margin:120px auto;
    background:linear-gradient(135deg,#E53935,#C62828);
    color:white;
    border-radius:35px;
    padding:70px;
    text-align:center;
}
.cta p{
    margin:20px auto 40px;
    max-width:600px;
}
.cta a{
    display:inline-block;
    padding:16px 36px;
    background:var(--surface);
    color:var(--primary);
    border-radius:14px;
    font-weight:700;
}
.footer{
    background:#111827;
    color:white;
    margin-top:120px;
    padding:80px 20px;
}
.footer-content{
    max-width:1200px;
    margin:auto;
    text-align:center;
}
.footer-logo{
    width:90px;
    margin:auto;
    margin-bottom:20px;
}
.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:35px 0;
    flex-wrap:wrap;
}
.footer-links a{
    color:#ddd;
}
.copyright{
    opacity:.7;
}
@media(max-width:768px){
.hero-content h1{
    font-size:2.8rem;
}
.hero-content h2{
    font-size:1.5rem;
}
.stats{
    grid-template-columns:repeat(2,1fr);
}
.cta{
    padding:45px 25px;
}
}