/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{

background:#f8fafc;
color:#111827;

}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* NAVBAR */

.navbar{

background:white;
border-bottom:1px solid rgba(0,0,0,0.05);

}

.nav-container{

display:flex;
align-items:center;
justify-content:space-between;

padding:20px 0;

}

.logo img{
height:100px;
width:auto;
}

@media(max-width:768px){

.logo img{
height:85px;
}

}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#374151;
font-weight:500;
}

.hamburger{
display:none;
font-size:22px;
cursor:pointer;
}


/* HERO */

.hero{

background:linear-gradient(
135deg,
#4f46e5,
#7c3aed,
#3b82f6
);

color:white;

padding:120px 0;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.hero h1{

font-size:48px;

margin-bottom:20px;

}

.hero p{

font-size:18px;

margin-bottom:30px;

max-width:520px;

}


/* BUTTONS */

.hero-buttons{
display:flex;
gap:16px;
}

.btn-primary{

background:white;

color:#4f46e5;

padding:14px 30px;

border-radius:30px;

text-decoration:none;

font-weight:600;

}

.btn-outline{

border:2px solid white;

padding:12px 28px;

border-radius:30px;

color:white;

text-decoration:none;

font-weight:600;

}

.btn-primary:hover{

transform:translateY(-2px);

}

.btn-outline:hover{

background:white;
color:#4f46e5;

}


/* HERO IMAGE */

.hero-image img{

width:340px;

border-radius:12px;

}


/* TRUST STRIP */

.trust{

padding:50px 0;

background:white;

text-align:center;

border-bottom:1px solid rgba(0,0,0,0.05);

}

.trust-title{

font-size:14px;

color:#6b7280;

margin-bottom:20px;

}

.trust-logos{

display:flex;

justify-content:center;

align-items:center;

gap:30px;

flex-wrap:wrap;

}

.trust-logos img{

height:40px;

}

.tool{

background:#f3f4f6;

padding:8px 16px;

border-radius:20px;

font-size:14px;

}


/* STATS */

.stats{

padding:80px 0;

text-align:center;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stats h2{

font-size:42px;

color:#4f46e5;

margin-bottom:6px;

}


/* SERVICES */

.services{

padding:100px 0;

background:#fafafa;

text-align:center;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:40px;

}

.service-card{

background:white;

padding:30px;

border-radius:14px;

box-shadow:0 10px 25px rgba(0,0,0,0.05);

transition:0.3s;

}

.service-card:hover{

transform:translateY(-8px);

}

.service-icon{

font-size:30px;

color:#4f46e5;

margin-bottom:12px;

}


/* PROCESS */

.process{

padding:100px 0;

text-align:center;

}

.process-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:40px;

}

.process-card{

background:white;

padding:35px;

border-radius:14px;

box-shadow:0 10px 25px rgba(0,0,0,0.05);

}


/* CONTACT */

.contact{

padding:100px 0;

text-align:center;

}

form{

max-width:500px;

margin:auto;

display:flex;

flex-direction:column;

gap:14px;

margin-top:30px;

}

input,textarea{

padding:12px;

border:1px solid #ddd;

border-radius:6px;

}

button{

background:#4f46e5;

color:white;

padding:12px;

border:none;

border-radius:6px;

cursor:pointer;

}


/* FOOTER */

footer{

background:#111827;

color:white;

text-align:center;

padding:30px;

margin-top:40px;

}


/* FLOATING CTA */

.floating-book{

position:fixed;

bottom:25px;
left:25px;

background:#4f46e5;

color:white;

padding:14px 22px;

border-radius:30px;

text-decoration:none;

font-weight:600;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

}


/* MOBILE */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-image img{
margin-top:30px;
width:260px;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

nav{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:70px;
right:20px;
padding:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

nav a{
margin:10px 0;
}

.hamburger{
display:block;
}

}

/* BLOG PAGE */

.blog-page{
padding:80px 0;
}

.blog-page h1{
font-size:40px;
margin-bottom:10px;
}

.blog-subtitle{
color:#6b7280;
margin-bottom:40px;
}


/* BLOG GRID */

.blog-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:40px;

}


/* BLOG CARD */

.blog-card{

background:white;

border-radius:14px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,0.05);

transition:all .3s ease;

}

.blog-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,0.1);

}


/* BLOG IMAGE */

.blog-image{

width:100%;
height:180px;

object-fit:cover;

}


/* BLOG CONTENT */

.blog-content{

padding:20px;

}

.blog-content h3{

font-size:18px;

margin-bottom:10px;

}

.blog-date{

font-size:13px;
color:#6b7280;
margin-bottom:12px;

}

.blog-read{

color:#4f46e5;

font-weight:600;

text-decoration:none;

}

.blog-read:hover{

text-decoration:underline;

}
/* BLOG HERO */

.blog-hero{

padding:80px 0;
background:#f8fafc;

}

.blog-hero h1{

font-size:40px;
margin-bottom:10px;

}

.blog-hero p{

color:#6b7280;

}

/* FEATURED ARTICLE */

.featured-blog{

padding:60px 0;

}

.featured-card{

display:grid;
grid-template-columns:1fr 1fr;

gap:40px;

background:white;

border-radius:14px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

}

.featured-card img{

width:100%;
height:320px;
object-fit:cover;

}

.featured-content{

padding:40px;

}

.featured-content h2{

font-size:28px;
margin-bottom:10px;

}

.featured-content p{

color:#6b7280;
margin-bottom:20px;

}

/* BLOG GRID */

.blog-section{

padding:80px 0;

}

.blog-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:40px;

}

.blog-card{

background:white;

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,0.05);

transition:0.3s;

}

.blog-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,0.1);

}

.blog-image{

width:100%;
height:180px;
object-fit:cover;

}

.blog-content{

padding:20px;

}

.blog-content h3{

font-size:18px;
margin-bottom:10px;

}

.blog-date{

font-size:13px;
color:#6b7280;
margin-bottom:10px;

}

.blog-read{

color:#4f46e5;
font-weight:600;
text-decoration:none;

}

.blog-read:hover{

text-decoration:underline;

}

/* MOBILE */

@media(max-width:900px){

.featured-card{

grid-template-columns:1fr;

}

.featured-card img{

height:240px;

}

}
.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.hero-image{
display:flex;
justify-content:center;
align-items:center;
}

.hero-image img{
max-width:420px;
width:100%;
height:auto;
border-radius:12px;
object-fit:contain;
}
.trust{
padding:50px 0;
text-align:center;
}

.trust-title{
font-size:18px;
color:#6b7280;
margin-bottom:25px;
}

.trust-logos{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.trust-logos img{
height:28px;
opacity:0.8;
transition:0.3s;
}

.trust-logos img:hover{
opacity:1;
}
/* AUTHOR BOX */

.author-box{
display:flex;
gap:15px;
align-items:center;
margin-top:40px;
padding-top:25px;
border-top:1px solid #eee;
}

.author-box img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

/* RELATED ARTICLES */

.related{
margin-top:50px;
}

.related h3{
margin-bottom:20px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.related-card{
text-decoration:none;
color:inherit;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
transition:0.25s;
}

.related-card:hover{
transform:translateY(-5px);
}

.related-card img{
width:100%;
height:140px;
object-fit:cover;
}

.related-card h4{
padding:12px;
font-size:16px;
}