
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Montserrat',sans-serif; background:#f7f7f7; color:#222; line-height:1.7;}
.container{width:92%; max-width:1400px; margin:auto;}

/* HEADER */

header{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,0.96);
backdrop-filter:blur(10px);
z-index:999;
padding:18px 0;
box-shadow:0 2px 20px rgba(0,0,0,0.06);
}

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

.logo{
font-size:32px;
font-weight:800;
color:#111;
text-decoration:none;
letter-spacing:2px;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav a{
text-decoration:none;
color:#111;
font-weight:600;
}

nav a:hover{color:#d60000;}

/* HERO */

.hero{
padding:180px 0 120px;
background:
linear-gradient(rgba(255,255,255,0.78),rgba(255,255,255,0.85)),
url('https://forzamachinery.com/images/cnc-machines.webp') center/cover;
}

.hero h1{
font-size:62px;
font-weight:800;
margin-bottom:25px;
}

.hero p{
font-size:20px;
color:#555;
max-width:900px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:16px 34px;
background:#d60000;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:6px;
}

.btn:hover{background:#111;}

/* SECTION */

.section{
padding:100px 0;
background:#fff;
}

.section.grey{
background:#f3f3f3;
}

.section-title{
font-size:48px;
text-align:center;
font-weight:800;
margin-bottom:20px;
}

.section-subtitle{
text-align:center;
max-width:850px;
margin:0 auto 70px;
color:#666;
font-size:18px;
}

/* GRID */

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

/* MACHINE CARDS */

.machine-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.06);
transition:0.3s;
}

.machine-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(0,0,0,0.10);
}

.machine-card img{
width:100%;
height:240px;
object-fit:cover;
}

.machine-content{
padding:30px;
}

.machine-content h3{
font-size:28px;
margin-bottom:15px;
}

.machine-content p{
color:#666;
margin-bottom:20px;
}

.machine-btn{
display:inline-block;
padding:12px 26px;
background:#d60000;
color:#fff;
text-decoration:none;
border-radius:5px;
font-weight:700;
}

.machine-btn:hover{background:#111;}

/* CONTENT BLOCK */

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

.content img{
width:100%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.content h2{
font-size:44px;
margin-bottom:20px;
font-weight:800;
}

.content p{
margin-bottom:15px;
color:#555;
}

/* CTA */

.cta{
padding:120px 20px;
text-align:center;
background:
linear-gradient(rgba(255,255,255,0.85),rgba(255,255,255,0.9)),
url('https://forzamachinery.com/images/edgebander.webp') center/cover;
}

.cta h2{
font-size:52px;
margin-bottom:20px;
font-weight:800;
}

.cta p{
font-size:20px;
color:#555;
margin-bottom:35px;
}

/* FOOTER */

footer{
background:#fff;
padding:90px 0 30px;
border-top:1px solid #eee;
}

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

footer h3{
font-size:24px;
margin-bottom:20px;
}

footer p{
margin-bottom:10px;
color:#666;
}

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

footer a:hover{
color:#d60000;
}

.footer-bottom{
border-top:1px solid #eee;
padding-top:30px;
text-align:center;
color:#777;
}

/* FIX MOBILE HERO BUTTONS */
@media(max-width:900px){
.hero{
min-height:auto;
padding-top:140px;
padding-bottom:80px;
}
.hero-grid{
grid-template-columns:1fr;
gap:40px;
}
.hero-content{padding:30px;}
.hero h1{
font-size:42px;
line-height:1.15;
}
.hero p{
font-size:18px;
margin-bottom:30px;
}
.hero-buttons{
display:flex;
flex-direction:column;
gap:15px;
width:100%;
}
.hero-buttons .btn{
width:100%;
text-align:center;
padding:16px 20px;
}
.hero-image{
margin-top:10px;
}
.hero-image img{
width:100%;
height:auto;
border-radius:18px;
}
}

/* EXTRA SMALL MOBILE */
@media(max-width:480px){
.hero{padding-top:130px;}
.hero h1{font-size:34px;}
.hero-content{padding:22px; border-radius:18px;}
.btn{font-size:15px;}
}

}