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

body{
font-family:'Montserrat',sans-serif;
background:#ffffff;
color:#111;
line-height:1.7;
}

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

.narrow{
max-width:850px;
}

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

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:24px;
font-weight:800;
}

.top-btn{
background:#d60000;
color:white;
padding:12px 22px;
border-radius:12px;
text-decoration:none;
font-weight:700;
}

.hero{
padding:80px 0;
background:#fff;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.badge{
display:inline-block;
padding:10px 18px;
border:2px solid #2d6a4f;
border-radius:30px;
font-size:14px;
font-weight:700;
margin-bottom:20px;
color:#2d6a4f;
}

.hero h1{
font-size:64px;
line-height:1;
font-weight:800;
margin-bottom:25px;
text-transform:uppercase;
}

.hero p{
font-size:22px;
color:#555;
margin-bottom:25px;
}

.hero-image img{
width:100%;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.main-btn{
display:inline-block;
background:#d60000;
color:white;
padding:18px 35px;
border-radius:14px;
text-decoration:none;
font-weight:800;
font-size:18px;
}

.large{
padding:22px 45px;
font-size:20px;
}

.trust-row{
display:flex;
gap:20px;
margin-top:25px;
flex-wrap:wrap;
font-weight:600;
color:#444;
}

.section{
padding:90px 0;
}

.white{
background:#fff;
}

.gray{
background:#f6f8fb;
}

.dark{
background:#111;
color:white;
}

.dark h2,
.dark p{
color:white;
}

h2{
font-size:46px;
margin-bottom:25px;
font-weight:800;
}

p{
font-size:18px;
margin-bottom:20px;
color:#555;
}

.list{
padding-left:25px;
margin-bottom:20px;
}

.list li{
margin-bottom:10px;
font-size:18px;
}

.split{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.rounded{
width:100%;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.center{
text-align:center;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.testimonial{
background:#1d1d1d;
padding:30px;
border-radius:22px;
}

.cta-section{
background:#d60000;
color:white;
padding:100px 0;
}

.cta-section h2,
.cta-section p{
color:white;
}

footer{
background:#111;
color:#aaa;
text-align:center;
padding:50px 20px 90px;
}

.footer-links{
margin-bottom:25px;
}

.footer-links a{
color:#aaa;
text-decoration:none;
margin:0 12px;
}

.sticky-mobile{
display:none;
}

@media(max-width:900px){

.hero-grid,
.split{
grid-template-columns:1fr;
}

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

h2{
font-size:34px;
}

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

.sticky-mobile{
display:block;
position:fixed;
bottom:0;
left:0;
width:100%;
background:#d60000;
padding:16px;
text-align:center;
z-index:9999;
}

.sticky-mobile a{
color:white;
text-decoration:none;
font-weight:800;
font-size:20px;
}

}
