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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8fafc;
    color:#111827;
}

header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    border-bottom:1px solid #e5e7eb;
}

.logo h2{
    color:#6D5EF5;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#374151;
    font-weight:600;
}

.menu-button{
    display:flex;
    align-items:center;
    gap:15px;
}

.menu-button a{
    text-decoration:none;
    color:#374151;
}

.menu-button button{
    background:#6D5EF5;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    cursor:pointer;
}

.hero{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:80px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.hero-text{
    flex:1;
}

.badge{
    display:inline-block;
    background:#ede9fe;
    color:#6D5EF5;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
}

.hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
}

.hero-button{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.hero-button button{
    padding:14px 28px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
}

.hero-button button:first-child{
    background:#6D5EF5;
    color:white;
}

.hero-button button:last-child{
    background:white;
    border:1px solid #d1d5db;
}

.hero-card{
    flex:1;
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.hero-card h3{
    margin-bottom:15px;
}

.hero-card p{
    margin-bottom:20px;
}

.hero-card ul{
    list-style:none;
}

.hero-card li{
    padding:12px 0;
    border-bottom:1px solid #f1f5f9;
}

@media(max-width:768px){

header{
    flex-direction:column;
    gap:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

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

.hero h1{
    font-size:38px;
}

.hero-button{
    justify-content:center;
}

}
/* ===========================
   SECTION : WHY NAHARA AI
=========================== */

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

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

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

.section-title .badge{
    display:inline-block;
    background:#EEF2FF;
    color:#6D5EF5;
    padding:8px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.section-title p{
    font-size:18px;
    line-height:1.8;
    color:#6B7280;
}

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

.why-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:35px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(109,94,245,.15);
}

.why-card .icon{
    font-size:40px;
    margin-bottom:20px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111827;
}

.why-card p{
    color:#6B7280;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

.why{
    padding:70px 0;
}

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:16px;
}

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

.why-card{
    padding:25px;
}

}
/* ===========================
   SECTION TOOLS
=========================== */

.tools{
    padding:100px 0;
    background:#F8FAFC;
}

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

.tool-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:30px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.tool-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(109,94,245,.15);
}

.tool-card h3{
    font-size:22px;
    color:#111827;
    margin-bottom:15px;
}

.tool-card p{
    color:#6B7280;
    line-height:1.8;
    font-size:16px;
}

/* Mobile */

@media(max-width:768px){

.tools{
    padding:70px 0;
}

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

.tool-card{
    padding:24px;
}

}
/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works{

padding:100px 0;

background:#fff;

}

.steps{

display:grid;

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

gap:30px;

margin-top:60px;

}

.step{

text-align:center;

padding:35px;

background:white;

border-radius:20px;

border:1px solid #E5E7EB;

transition:.3s;

}

.step:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(109,94,245,.15);

}

.step-number{

width:70px;

height:70px;

margin:auto;

border-radius:50%;

background:#6D5EF5;

color:white;

font-size:30px;

font-weight:bold;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.step h3{

margin-bottom:15px;

font-size:24px;

}

.step p{

color:#6B7280;

line-height:1.8;

}

@media(max-width:768px){

.steps{

grid-template-columns:1fr;

}

}
