/* GLOBAL */

body{
font-family:'Inter',sans-serif;
margin:0;
background:#f7f8fb;
color:#222;
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}


/* HEADER */

.header{
background:white;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.brand{
text-decoration:none;
color:#111;
}

.brand-name{
font-weight:700;
font-size:20px;
}

.brand-title{
font-size:12px;
color:#666;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#5b6cff;
}



/* PAGE */

.page-wrap{
padding:80px 20px;
}

.content-grid{
display:grid;
grid-template-columns:1fr 320px;
gap:60px;
max-width:1100px;
margin:auto;
}

.article h1{
font-size:36px;
margin-bottom:20px;
}

.article h2{
margin-top:40px;
font-size:24px;
}

.article p{
line-height:1.8;
color:#444;
margin-bottom:18px;
}

.article ul{
padding-left:20px;
}



/* SIDEBAR */

.sidebar{
position:sticky;
top:120px;
height:fit-content;
}

.lead-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.lead-form{
display:flex;
flex-direction:column;
gap:10px;
margin-top:20px;
}

.lead-form input,
.lead-form select{
padding:10px;
border:1px solid #ddd;
border-radius:6px;
}

.lead-form button{
background:#5b6cff;
color:white;
border:none;
padding:12px;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

.lead-form button:hover{
background:#4958e0;
}

.phone{
margin-top:10px;
font-size:14px;
color:#555;
}



/* FOOTER */

.footer{
background:#0f172a;
color:#fff;
padding:60px 20px;
margin-top:80px;
}

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

.footer a{
color:#cbd5e1;
text-decoration:none;
}

.footer-bottom{
border-top:1px solid #1f2937;
margin-top:40px;
padding-top:20px;
text-align:center;
color:#cbd5e1;
}
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* mobil */

@media(max-width:768px){

nav{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
border-top:1px solid #eee;
}

nav a{
padding:15px;
border-bottom:1px solid #eee;
display:block;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}
.header{
background:white;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:999;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo a{
font-weight:700;
font-size:18px;
text-decoration:none;
color:#111;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

/* hamburger */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

/* MOBİL */

@media (max-width:768px){

.hamburger{
display:block;
}

nav{
display:none;
position:absolute;
top:65px;
left:0;
width:100%;
background:white;
flex-direction:column;
border-top:1px solid #eee;
}

nav a{
padding:15px;
border-bottom:1px solid #eee;
margin:0;
}

nav.active{
display:flex;
}

}
@media (max-width:768px){

.sidebar{
position:static !important;
width:100%;
margin-top:30px;
}

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

}