*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior: smooth;
}

body{
    position:relative;
    font-family:Arial, Helvetica, sans-serif;

    background:#F8FAFC;

    color:#111827;

    overflow-x:hidden;
}

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

nav{
    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 40px;

    margin-top:20px;

    border-radius:20px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.6);
}
.logo{
    font-size:30px;
    font-weight:700;
    color:#2563EB;
    letter-spacing:1px;
}
nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}
nav a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
}
.hero-btn,
.demo-btn,
.pricing-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;

     background:#2563EB;
    color:white;
    padding:15px 30px;
    border-radius:12px;
    border:none;
    font-weight:600;

}

.demo-btn:hover{

    background:#1D4ED8;

}
.hero{

   display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:100px;

    min-height:90vh;

    padding:80px 0;

    

}
.badge{

display:inline-block;

background:#EEF5FF;

color:#2563EB;

padding:10px 18px;

border-radius:999px;

font-size:14px;

font-weight:bold;

margin-bottom:25px;

}
.hero h1{

 font-size:clamp(38px,8vw,72px);

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;

    letter-spacing:-2px;

}
.hero p{

font-size:20px;

    color:#6B7280;

    line-height:1.8;

    max-width:600px;

    margin-bottom:40px;

}
.hero-buttons{

display:flex;

gap:20px;

}
.primary-btn{

  background:linear-gradient(135deg,#2563EB,#3B82F6);

    color:white;

    border:none;

    padding:18px 38px;

    border-radius:14px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}
.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(37,99,235,.35);

}

.secondary-btn{

background:white;

border:2px solid #D1D5DB;

padding:16px 34px;

border-radius:14px;

font-size:16px;

font-weight:bold;

cursor:pointer;

}
.dashboard-card{

 background:white;

    padding:50px;

    border-radius:28px;

    box-shadow:

    0 15px 50px rgba(0,0,0,.08);

    border:1px solid #E5E7EB;

    animation:float 4s ease-in-out infinite;


}
.voice-circle{

 width:150px;

    height:150px;

    border-radius:50%;

    margin:40px auto;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    color:white;

    font-size:60px;

    box-shadow:

    0 25px 50px rgba(37,99,235,.45);

}
.background-glow{

    position:absolute;

    top:-200px;

    right:-150px;

    width:700px;

    height:700px;

    background:#3B82F6;

    opacity:.15;

    filter:blur(180px);

    border-radius:50%;

    z-index:-1;

}
@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}
.dashboard-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}
.status{

    background:#DCFCE7;

    color:#15803D;

    padding:8px 14px;

    border-radius:20px;

    font-size:14px;

    font-weight:600;

}
.voice-orb{

    width:170px;

    height:170px;

    margin:0 auto;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    box-shadow:

        0 0 40px rgba(37,99,235,.5);

}
.voice-orb{

    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}
.listening{

    text-align:center;

    margin:30px 0;

    font-size:17px;

    color:#6B7280;

}
.info-card{

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:18px;

    margin-top:18px;

}
.info-card strong{

    display:block;

    margin-bottom:8px;

    color:#111827;

}
.info-card p{

    color:#6B7280;

    font-size:15px;

}
.info-card{

    transition:.3s;
}

.info-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}
.about{

    padding:120px 0;

}
.section-title{

    text-align:center;

    max-width:900px;

    margin:auto;

}
.section-title span{

    color:#2563EB;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}
.section-title p{

    font-size:20px;

    line-height:1.8;

    color:#6B7280;

}
.ai-dashboard{

    width:100%;

    max-width:500px;

    margin-left:auto;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:30px;

    padding:35px;

    box-shadow:
    0 20px 60px rgba(15,23,42,.12);

}
.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}
.ai-info{

    display:flex;

    align-items:center;

    gap:15px;

}
.ai-avatar{

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-weight:700;

    font-size:20px;

}
.ai-info h4{

    font-size:18px;

    margin-bottom:4px;

}

.ai-info span{

    color:#6B7280;

    font-size:14px;

}
.online-dot{

    width:14px;

    height:14px;

    background:#22C55E;

    border-radius:50%;

    box-shadow:0 0 12px #22C55E;

}
.voice-animation{

    position:relative;

    width:220px;

    height:220px;

    margin:30px auto 50px;

}
.voice-core{

    position:absolute;

    inset:50% auto auto 50%;

    transform:translate(-50%,-50%);

    width:120px;

    height:120px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:52px;

    box-shadow:
    0 20px 45px rgba(37,99,235,.35);

}
.pulse-ring{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:180px;

    height:180px;

    border-radius:50%;

    border:3px solid rgba(37,99,235,.25);

    animation:pulseRing 2.5s infinite;

}
.delay{

    animation-delay:1.2s;

}
@keyframes pulseRing{

    0%{

        transform:translate(-50%,-50%) scale(.8);

        opacity:1;

    }

    100%{

        transform:translate(-50%,-50%) scale(1.35);

        opacity:0;

    }

}
.dashboard-widgets{

    display:flex;

    flex-direction:column;

    gap:18px;

}
.widget{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border-radius:18px;

    background:white;

    border:1px solid #EEF2F7;

    box-shadow:

        0 10px 25px rgba(15,23,42,.05);

    transition:.3s;

}
.widget:hover{

    transform:translateY(-6px);

    box-shadow:

    0 18px 35px rgba(37,99,235,.12);

}
.widget-icon{

    width:52px;

    height:52px;

    border-radius:15px;

    background:#EEF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}
.widget h5{

    font-size:17px;

    margin-bottom:5px;

}

.widget span{

    color:#6B7280;

    font-size:14px;

}
.widget-call{

    border-left:5px solid #2563EB;

}

.widget-calendar{

    border-left:5px solid #22C55E;

}

.widget-summary{

    border-left:5px solid #A855F7;

}
.features{

    padding:140px 0;

}
.section-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.section-heading span{

    color:#2563EB;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-heading h2{

    font-size:52px;

    margin:20px 0;

}

.section-heading p{

    color:#6B7280;

    line-height:1.8;

    font-size:20px;

}
.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}
.feature-card{

    background:white;

    padding:35px;

    border-radius:25px;

    border:1px solid #EEF2F7;

    transition:.35s;

    box-shadow:

    0 15px 40px rgba(15,23,42,.05);

}
.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 25px 60px rgba(37,99,235,.15);

}
.feature-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#EEF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}
.feature-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.feature-card p{

    color:#6B7280;

    line-height:1.8;

}
.feature-icon svg{

    width:32px;

    height:32px;

    stroke:#2563EB;

}
.how-it-works{

    padding:140px 0;

}
.steps-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:80px;

}
.step-card{

    position:relative;

    background:white;

    border:1px solid #EEF2F7;

    border-radius:25px;

    padding:35px;

    transition:.35s;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}
.step-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(37,99,235,.12);

}
.step-number{

    position:absolute;

    top:25px;

    right:25px;

    font-size:14px;

    font-weight:700;

    color:#CBD5E1;

}
.step-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EEF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}
.step-icon svg{

    width:34px;

    height:34px;

    stroke:#2563EB;

}
.step-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.step-card p{

    color:#6B7280;

    line-height:1.8;

}
.industries{

    padding:140px 0;

}
.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}
.industry-card{

    background:white;

    border:1px solid #EEF2F7;

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}
.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(37,99,235,.12);

}
.industry-card svg{

    width:42px;

    height:42px;

    stroke:#2563EB;

    margin-bottom:25px;

}
.industry-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.industry-card p{

    color:#6B7280;

    line-height:1.8;

}
.pricing{

    padding:120px 0;

}

.pricing-toggle{

    display:flex;

    justify-content:center;

    gap:15px;

    margin:50px 0;

}

.toggle-btn{

    padding:14px 28px;

    border:none;

    border-radius:30px;

    cursor:pointer;

    background:#EEF2FF;

    color:#2563EB;

    font-weight:600;

    transition:.3s;
    

}

.toggle-btn.active{

    background:#2563EB;

    color:white;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.pricing-card{

    background:white;

    border-radius:25px;

    padding:40px;

    border:1px solid #E5E7EB;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.pricing-card:hover{

    transform:translateY(-8px);

}

.pricing-card h3{

    font-size:26px;

    margin-bottom:20px;

}

.pricing-card h1{

    color:#2563EB;

    margin-bottom:25px;

}

.pricing-card p{

    color:#6B7280;

    margin-bottom:20px;

    line-height:1.7;

}

.pricing-card ul{

    margin-left:20px;

    margin-bottom:30px;

}

.pricing-card li{

    margin-bottom:12px;

    color:#374151;

}

.pricing-card button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:14px;

    background:#2563EB;

    color:white;

    font-size:16px;

    cursor:pointer;

}
.faq{

    padding:120px 0;

}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    border:1px solid #E5E7EB;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    background:white;

}

.faq-question{

    width:100%;

    padding:24px 30px;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    text-align:left;

}

.faq-question svg{

    width:22px;

    height:22px;

    color:#2563EB;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .3s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#6B7280;

    line-height:1.8;

}
.contact{

    padding:120px 0;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.contact-info span{

    color:#2563EB;

    font-weight:700;

    letter-spacing:2px;

}

.contact-info h2{

    font-size:48px;

    margin:20px 0;

}

.contact-info p{

    color:#6B7280;

    line-height:1.8;

}

.contact-details{

    margin-top:50px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:35px;

}

.contact-item svg{

    width:24px;

    height:24px;

    stroke:#2563EB;

}

.contact-item h4{

    margin-bottom:8px;

}

.contact-form{

    background:white;

    padding:45px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    border:1px solid #E5E7EB;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #D1D5DB;

    border-radius:12px;

    font-size:16px;

    outline:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#2563EB;

}

.contact-form button{

    padding:16px;

    background:#2563EB;

    color:white;

    border:none;

    border-radius:12px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#1D4ED8;

}
.tawi{

    padding:120px 0;

}

.tawi-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:white;

    padding:70px;

    border-radius:30px;

    border:1px solid #E5E7EB;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.tawi-card span{

    color:#2563EB;

    font-weight:700;

    letter-spacing:2px;

}

.tawi-card h2{

    font-size:48px;

    margin:20px 0;

}

.tawi-card p{

    max-width:650px;

    margin:0 auto 40px;

    color:#6B7280;

    line-height:1.8;

}

.tawi-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    background:#2563EB;

    color:white;

    text-decoration:none;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

}

.tawi-btn:hover{

    background:#1D4ED8;

}

.tawi-btn svg{

    width:20px;

    height:20px;

}
.final-cta{

    padding:80px 0;

    text-align:center;

}

.final-cta h2{

    font-size:42px;

    margin:20px 0;

}

.final-cta p{

    max-width:650px;

    margin:auto;

    color:#6B7280;

    line-height:1.8;

}

.final-cta .demo-btn{

    display:inline-block;

    margin-top:35px;

}
.footer{

    background:#0F172A;

    color:white;

    padding:70px 0 25px;

}

.footer-content{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer h2{

    margin-bottom:20px;

}

.footer p{

    color:#CBD5E1;

    line-height:1.8;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#CBD5E1;

    text-decoration:none;

}

.footer-links a:hover{

    color:white;

}

.footer-contact p{

    margin-bottom:12px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

}
img{

    max-width:100%;

    display:block;

}
.social-links{

    margin-top:20px;

}

.social-links a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    color:white;

}

.social-links svg{

    width:20px;

    height:20px;

}
.contact-item a{

    color:#2563EB;

    text-decoration:none;

    font-weight:500;

}

.contact-item a:hover{

    text-decoration:underline;

}
.footer-contact a,
.contact-item a{

    color:inherit;
    text-decoration:none;

}

.footer-contact a:hover,
.contact-item a:hover{

    color:#2563EB;

}
.menu-toggle{

    display:none;
    background:none;
    border:none;
    cursor:pointer;

}

.menu-toggle svg{

    width:30px;
    height:30px;
    color:#0F172A;

}
@media (max-width: 992px){
.hero{

    grid-template-columns:1fr;

    text-align:center;

    gap:60px;

}
nav{

    padding:20px;

}
.container{

    width:94%;

}
.hero h1{

    font-size:44px;

}
.hero p{

    font-size:18px;

}
.hero-buttons{

    flex-direction:column;

}
.dashboard-card{

    padding:25px;

}
.tawi-card{

    padding:35px;

}
.contact-form{

    padding:25px;

}
.industry-grid{

    grid-template-columns:1fr;

}
.features-grid{

    grid-template-columns:1fr;

}
.steps-grid{

    grid-template-columns:1fr;

}
.pricing-grid{

    grid-template-columns:1fr;

}
.contact-wrapper{

    grid-template-columns:1fr;

}
.footer-content{

    grid-template-columns:1fr;

    text-align:center;

}
.menu-toggle{

    display:block;

}

nav ul{

    display:flex;
    flex-direction:column;

    position:absolute;

    top:95px;

    left:0;

    width:100%;

    background:white;

    padding:30px 0;

    gap:25px;

    text-align:center;

    display:none;

    border-radius:0 0 20px 20px;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}
nav{

    position:relative;

}


}
nav ul.active{

    display:flex;

}
html,
body{
    width:100%;
    overflow-x:hidden;
}





