
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Inter,Arial,sans-serif;
background:#fff;
color:#111827;
overflow-x:hidden;
}
.container{
width:92%;
max-width:1320px;
margin:auto;
}
header{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 2px 20px rgba(0,0,0,.05);
}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}
.logo img{height:90px}
.menu{
display:flex;
gap:40px;
list-style:none;
}
.menu a{
text-decoration:none;
font-weight:600;
color:#111827;
}
.contact-btn{
background:linear-gradient(135deg,#7c3aed,#a855f7);
padding:16px 28px;
border-radius:14px;
color:#fff;
font-weight:700;
text-decoration:none;
}

.hero{
position:relative;
min-height:88vh;
display:flex;
align-items:center;
overflow:hidden;
background:#f7f5fb;
}

.hero-image{
position:absolute;
top:0;
right:0;
width:72%;
height:100%;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:60%;
height:100%;
background:linear-gradient(to right,
rgba(247,245,251,1) 0%,
rgba(247,245,251,.95) 35%,
rgba(247,245,251,.6) 70%,
rgba(247,245,251,0) 100%);
z-index:2;
}

.hero-content{
position:relative;
z-index:3;
max-width:720px;
padding:80px 0;
}

.tag{
display:block;
color:#8a52ff;
font-weight:800;
margin-bottom:24px;
font-size:18px;
}

.hero h1{
font-size:72px;
line-height:1.05;
font-weight:900;
margin-bottom:28px;
}

.hero h1 span{
color:#8a52ff;
}

.hero p{
font-size:21px;
line-height:1.8;
color:#6b7280;
max-width:620px;
margin-bottom:38px;
}

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

.btn-primary,.btn-secondary{
padding:18px 34px;
border-radius:16px;
font-weight:700;
text-decoration:none;
font-size:18px;
}

.btn-primary{
background:linear-gradient(135deg,#7c3aed,#a855f7);
color:white;
box-shadow:0 12px 30px rgba(138,82,255,.3);
}

.btn-secondary{
border:2px solid #8a52ff;
color:#8a52ff;
background:white;
}

.services{
padding:110px 0;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title span{
color:#8a52ff;
font-weight:800;
}

.section-title h2{
font-size:52px;
margin-top:12px;
}

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

.card{
background:white;
border-radius:22px;
padding:42px;
border:1px solid #ececec;
box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.icon{
font-size:60px;
margin-bottom:24px;
}

.card h3{
font-size:34px;
margin-bottom:18px;
}

.card p{
font-size:17px;
line-height:1.9;
color:#6b7280;
margin-bottom:20px;
}

.card small{
font-weight:600;
color:#4b5563;
}

footer{
background:#111827;
padding:40px;
text-align:center;
color:white;
}

@media(max-width:1000px){

.hero{
min-height:auto;
padding:40px 0;
}

.hero-image{
position:relative;
width:100%;
height:420px;
margin-top:30px;
}

.hero-overlay{
display:none;
}

.hero-content{
padding:20px 0;
}

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

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

.menu{
display:none;
}

}
