/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:linear-gradient(135deg,#021526,#01243b);
color:white;
line-height:1.6;
}


/* NAVBAR */

header{
position:sticky;
top:0;
background:rgba(1,20,35,0.9);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.05);
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
max-width:1200px;
margin:auto;
}

.logo img{
height:80px;
width:auto;
}

.logo{
disply:flex;
align-items:center;
}

.nav-links{
display:flex;
gap:34px;
list-style:none;
align-items:center;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:15px;
font-weight:500;
letter-spacing:0.3px
opacity:0.9;
transition:0.3s;
}

.nav-links a:hover{
color:#22e6c5;
}


/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}


/* HERO */

.hero{
text-align:center;
max-width:900px;
margin:auto;
padding:120px 20px;
}

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

.highlight{
background:linear-gradient(90deg,#22e6c5,#2fa4ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:18px;
color:#c7d2de;
margin-bottom:40px;
}

.cta{
display:inline-block;
padding:16px 36px;
background:linear-gradient(90deg,#22e6c5,#2fa4ff);
border-radius:10px;
text-decoration:none;
color:#021526;
font-weight:600;
font-size:16px;
transition:0.3s;
}

.cta:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.3);
}


/* PIPELINE */

.pipeline{
padding:120px 20px;
max-width:1200px;
margin:auto;
text-align:center;
}

.pipeline h2{
font-size:36px;
margin-bottom:60px;
}

.pipeline-flow{
display:flex;
flex-wrap:wrap;
justify-content:center;
align-items:center;
gap:30px;
}

.pipe{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:12px;
width:200px;
border:1px solid rgba(255,255,255,0.05);
}

.pipe h3{
color:#22e6c5;
margin-bottom:10px;
}

.arrow{
font-size:26px;
color:#22e6c5;
}

.arrow{
transform:rotate(-90deg);
}


/* WORKFLOW */

.workflow{
padding:120px 8%;
max-width:1200px;
margin:auto;
text-align:center;
}

.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.step{
background:rgba(255,255,255,0.05);
padding:35px;
border-radius:12px;
}


/* PROBLEM */

.problem{
padding:120px 20px;
max-width:1200px;
margin:auto;
text-align:center;
}

.problem-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:rgba(255,255,255,0.06);
padding:35px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
backdrop-filter:blur(8px);
}

.card h3{
color:#22e6c5;
margin-bottom:12px;
font-size:20px;
}

.card p{
color:#b7c7d6;
font-size:15px;
line-height:1.6;
}

.card:hover{
transform:translateY(-6px);
border:1px solid rgba(34,230,197,0.5);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}


/* PRODUCT */

.product{
padding:120px 8%;
max-width:900px;
margin:auto;
text-align:center;
}


/* FOOTER */

footer{
background:#01111f;
padding:80px 40px;
margin-top:120px;
}

.footer-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:50px;
}

.footer-col h3{
margin-bottom:15px;
color:#22e6c5;
}

.footer-col a{
display:block;
color:#9fb2c3;
text-decoration:none;
margin-bottom:8px;
}

.footer-col a:hover{
color:white;
}

.footer-bottom{
text-align:center;
margin-top:40px;
color:#9fb2c3;
font-size:14px;
}


/* SECTION */

.section{
padding:140px 20px;
max-width:1100px;
margin:auto;
text-align:center;
}

.section h2{
font-size:36px;
margin-bottom:25px;
font-weight:600;
}

.section p{
color:#b7c7d6;
font-size:17px;
max-width:720px;
margin:auto;
margin-top:10px;
line-height:1.7;
}


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

@media (max-width:768px){

.navbar{
padding:14px 20px;
}

.logo img{
height:55px;
}

.menu-toggle{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:75px;
left:0;
width:100%;
background:#021526;
text-align:center;
padding:25px 0;
gap:20px;
}

.nav-links.active{
display:flex;
}

.hero{
padding:80px 20px;
}

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

.hero p{
font-size:16px;
}

.pipeline-flow{
flex-direction:column;
}

.pipe{
width:100%;
}

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

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

}
