*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f8fbff;
    color:#1e293b;
}

html {
    scroll-behavior: smooth;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:white;
    border-bottom:1px solid #e5e7eb;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo img{
    height:85px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#1e293b;
    font-weight:600;
}

.btn-primary{
    background:#2563eb;
    color:white;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
}

.btn-secondary{
    border:2px solid #2563eb;
    color:#2563eb;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
}

.hero{
    padding:40px 0 80px;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-text{
    flex:1;
}

.badge{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-logo{
    width:340px;
    margin-bottom:30px;
}

.hero-text h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}

.problems{
    padding:80px 0;
    background:#ffffff;
}

.problems h2{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
    color:#0f172a;
}

.problem-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.problem-card{
    background:#f8fbff;
    border:1px solid #dbeafe;
    border-radius:18px;
    padding:35px;
    min-height:220px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.problem-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#0f172a;
}

.problem-card p{
    font-size:16px;
    line-height:1.6;
    color:#475569;
}

.problem-footer{
    text-align:center;
    margin-top:35px;
    font-size:20px;
    font-weight:700;
    color:#2563eb;
}

.meet-mia{
    padding:100px 0;
    background:#f8fafc;
}

.meet-mia-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.section-tag{
    display:inline-block;
    background:#e0ecff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-weight:600;
    margin-bottom:20px;
}

.meet-mia h2{
    font-size:42px;
    margin-bottom:20px;
    color:#0f172a;
}

.meet-mia p{
    font-size:18px;
    line-height:1.8;
    color:#475569;
    margin-bottom:25px;
}

.mia-features{
    list-style:none;
    padding:0;
}

.mia-features li{
    margin-bottom:15px;
    font-size:18px;
    color:#0f172a;
}

.meet-mia-image img{
    width:100%;
    max-width:400px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(15,23,42,.12);
}

.features {
    padding: 100px 0;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.section-heading p {
    color: #64748b;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
}

.pricing{
    padding:100px 0;
    background:#f8fafc;
}

.pricing-card{
    max-width:520px;
    margin:0 auto;
    background:#ffffff;
    border:1px solid #dbeafe;
    border-radius:24px;
    padding:40px;
    box-shadow:0 18px 45px rgba(15,23,42,.08);

    height:100%;

    display:flex;
    flex-direction:column;
}

.pricing-card h3{
    font-size:28px;
    margin-bottom:10px;
    color:#0f172a;
}

.price{
    font-size:52px;
    font-weight:800;
    color:#2563eb;
    margin-bottom:8px;
}

.price span{
    font-size:18px;
    color:#64748b;
    font-weight:500;
}

.pricing-subtitle{
    font-size:18px;
    color:#475569;
    margin-bottom:25px;
}

.pricing-features{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.pricing-features li{
    margin-bottom:13px;
    color:#0f172a;
    font-size:16px;
}

.annual-box{
    background:#eff6ff;
    border:1px solid #bfdbfe;
    color:#1e40af;
    border-radius:16px;
    padding:18px;
    margin-bottom:25px;
    line-height:1.5;
}

.annual-box strong{
    display:block;
    margin-top:5px;
}

.pricing-btn{
    display:block;
    text-align:center;
    margin-bottom:18px;
}

.pricing-note{
    font-size:14px;
    color:#64748b;
    text-align:center;
    line-height:1.5;
}

.pricing-mini-note{
    color:#2563eb;
    font-weight:600;
    margin-bottom:20px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.pricing-grid .pricing-card{
    margin:0;
    max-width:none;
}

@media (max-width: 900px){
    .pricing-grid{
        grid-template-columns:1fr;
    }
}

.pricing-actions{
    margin-top:auto;
}

.faq{
    padding:100px 0;
    background:#ffffff;
}

.faq-grid{
    max-width:1000px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
}

.faq-item{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:28px;
}

.faq-item h3{
    font-size:20px;
    margin-bottom:12px;
    color:#0f172a;
}

.faq-item p{
    color:#475569;
    line-height:1.6;
}

@media (max-width:900px){
    .faq-grid{
        grid-template-columns:1fr;
    }
}

.final-cta{
    padding:100px 0;
    background:#0f172a;
    text-align:center;
}

.final-cta h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:18px;
}

.final-cta p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
    max-width:650px;
    margin:0 auto 30px;
}

.footer{
    background:#ffffff;
    border-top:1px solid #e5e7eb;
    padding:50px 0;
    text-align:center;
}

.footer-brand h3{
    margin-bottom:10px;
}

.footer-brand p{
    color:#64748b;
    margin-bottom:25px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#2563eb;
    text-decoration:none;
}

.footer-copy{
    color:#94a3b8;
    font-size:14px;
}

.legal-page{
    background:#f8fafc;
    color:#0f172a;
}

.legal-container{
    max-width:900px;
    margin:80px auto;
    padding:0 20px;
}

.legal-container h1{
    font-size:42px;
    margin-bottom:30px;
}

.legal-container h2{
    margin-top:40px;
    margin-bottom:15px;
}

.legal-container p{
    line-height:1.8;
    color:#475569;
}
#dostiris-chat-widget {
position: fixed;
bottom: 24px;
right: 24px;
width: 380px;
height: 600px;
border: none;
border-radius: 18px;
box-shadow: 0 20px 60px rgba(0,0,0,0.35);
z-index: 999999;
display: none;
background: white;
}

#dostiris-chat-button {
position: fixed;
bottom: 24px;
right: 24px;
width: 64px;
height: 64px;
border-radius: 999px;
border: none;
background: linear-gradient(135deg, #2563eb, #1e40af);
color: white;
font-size: 28px;
cursor: pointer;
box-shadow: 0 12px 35px rgba(0,0,0,0.35);
z-index: 1000000;
}

#dostiris-chat-close {
position: fixed;
bottom: 638px;
right: 30px;
z-index: 1000001;
display: none;
border: none;
background: #111827;
color: white;
border-radius: 999px;
width: 32px;
height: 32px;
cursor: pointer;
}

@media (max-width: 600px) {
#dostiris-chat-widget {
width: calc(100vw - 24px);
height: 70vh;
right: 12px;
bottom: 90px;
}

#dostiris-chat-button {
right: 18px;
bottom: 18px;
}

#dostiris-chat-close {
right: 18px;
bottom: calc(70vh + 96px);
}
}

.demo-page{
    background:#f8fafc;
}

.demo-form-section{
    padding:80px 20px;
}

.demo-form-container{
    max-width:720px;
    margin:0 auto;
}

.back-home{
    display:inline-block;
    margin-bottom:30px;
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.demo-form{
    background:#ffffff;
    border:1px solid #dbeafe;
    border-radius:24px;
    padding:40px;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    display:grid;
    gap:18px;
}

.demo-form label{
    display:grid;
    gap:8px;
    font-weight:600;
    color:#0f172a;
}

.demo-form input,
.demo-form select,
.demo-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    font-size:16px;
    font-family:inherit;
}

.form-consent{
    font-size:13px;
    line-height:1.6;
    color:#64748b;
}

.demo-submit{
    width:100%;
    border:none;
    cursor:pointer;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .container{
        width:95%;
    }

    /* Header */

    .nav-container{
        flex-direction:column;
        gap:15px;
    }


    .nav-links{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .btn-primary{
        width:100%;
        text-align:center;
    }

    /* Hero */

    .hero{
        padding:15px 0 40px;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-logo{
        width:250px;
        margin-bottom:15px;
    }

    .hero-text h1{
        font-size:48px;
        line-height:1.1;
    }

    .hero-text p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-image img{
        max-width:100%;
    }

    /* Problems */

    .problem-grid{
        grid-template-columns:1fr;
    }

    /* Meet Mia */

    .meet-mia-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .meet-mia h2{
        font-size:42px;
    }

    .meet-mia-image img{
        max-width:280px;
        margin:auto;
        display:block;
    }

    /* Features */

    .feature-grid{
        grid-template-columns:1fr;
    }

    /* Pricing */

    .pricing-card{
        padding:25px;
    }

    .price{
        font-size:60px;
    }

    /* FAQ */

    .faq-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 16px 0;
    }

    .logo img {
        height: 85px;
    }

    .nav-container > .btn-primary {
        width: auto;
        padding: 12px 18px;
        white-space: nowrap;
    }
}