*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
line-height:1.7;
background:#f8fafc;
color:#1f2937;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:92%;
max-width:1200px;
margin:auto;
}

/* ==========================
   HEADER
========================== */

.site-header{
background:#ffffff;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:999;
}

.nav-wrap{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:1.8rem;
font-weight:700;
color:#0f172a;
}

.logo span{
color:#16a34a;
}

.nav{
display:flex;
gap:25px;
}

.nav a{
color:#374151;
font-weight:600;
}

.nav a:hover{
color:#16a34a;
}

.header-call{
background:#16a34a;
color:#fff;
padding:12px 22px;
border-radius:10px;
font-weight:700;
}

.header-call:hover{
background:#15803d;
}

/* ==========================
   HERO
========================== */

.hero{
padding:80px 0;
background:linear-gradient(
135deg,
#ecfdf5,
#ffffff
);
}

.hero-grid{
display:grid;
grid-template-columns:1fr 420px;
gap:50px;
align-items:center;
}

.eyebrow{
color:#16a34a;
font-weight:700;
text-transform:uppercase;
letter-spacing:1px;
margin-bottom:10px;
}

.hero h1{
font-size:3rem;
line-height:1.2;
margin-bottom:20px;
color:#0f172a;
}

.hero-text{
font-size:1.1rem;
margin-bottom:30px;
color:#4b5563;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:14px 24px;
border-radius:10px;
font-weight:700;
transition:.3s;
}

.primary{
background:#16a34a;
color:#fff;
}

.primary:hover{
background:#15803d;
}

.secondary{
background:#0f172a;
color:#fff;
}

.secondary:hover{
background:#111827;
}

/* ==========================
   HERO FORM
========================== */

.hero-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.hero-card h2{
margin-bottom:10px;
}

.hero-card p{
margin-bottom:20px;
color:#6b7280;
}

.hero-card form{
display:flex;
flex-direction:column;
gap:14px;
}

.hero-card input,
.hero-card select,
.hero-card textarea{
padding:14px;
border:1px solid #d1d5db;
border-radius:10px;
font-size:1rem;
}

.hero-card textarea{
min-height:120px;
resize:vertical;
}

.hero-card button{
background:#16a34a;
color:#fff;
border:none;
padding:15px;
border-radius:10px;
font-size:1rem;
font-weight:700;
cursor:pointer;
}

.hero-card button:hover{
background:#15803d;
}

/* ==========================
   SECTIONS
========================== */

.section{
padding:80px 0;
}

.light{
background:#f1f5f9;
}

.dark{
background:#0f172a;
color:#fff;
}

.section-heading{
text-align:center;
margin-bottom:50px;
}

.section-heading h2{
font-size:2.3rem;
margin-bottom:15px;
color:#0f172a;
}

.dark .section-heading h2{
color:#fff;
}

.section-heading p{
max-width:800px;
margin:auto;
color:#6b7280;
}

.dark .section-heading p{
color:#d1d5db;
}

/* ==========================
   SERVICES
========================== */

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
transition:.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.icon{
font-size:2rem;
margin-bottom:15px;
}

.service-card h3{
margin-bottom:10px;
}

.service-card p{
margin-bottom:20px;
color:#6b7280;
}

.service-card a{
color:#16a34a;
font-weight:700;
}

/* ==========================
   STEPS
========================== */

.steps-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.step{
background:#fff;
padding:30px;
border-radius:16px;
text-align:center;
}

.step span{
display:inline-flex;
width:50px;
height:50px;
align-items:center;
justify-content:center;
background:#16a34a;
color:#fff;
border-radius:50%;
font-weight:700;
margin-bottom:15px;
}

/* ==========================
   KEYWORD GRID
========================== */

.keyword-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

.keyword-grid a{
background:#fff;
padding:16px;
border-radius:10px;
border:1px solid #e5e7eb;
color:#374151;
font-weight:600;
}

.keyword-grid a:hover{
border-color:#16a34a;
color:#16a34a;
}

/* ==========================
   CONTRACTOR CTA
========================== */

.contractor-box{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.contractor-box p{
color:#cbd5e1;
}

/* ==========================
   FAQ
========================== */

.faq-list{
max-width:900px;
margin:auto;
}

.faq-item{
background:#fff;
padding:25px;
margin-bottom:20px;
border-radius:12px;
}

.faq-item h3{
margin-bottom:10px;
}

.faq-item p{
color:#6b7280;
}

/* ==========================
   FOOTER
========================== */

.site-footer{
background:#111827;
color:#fff;
padding-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
padding-bottom:40px;
}

.footer-logo{
display:block;
margin-bottom:15px;
}

.site-footer a{
display:block;
margin-bottom:10px;
color:#cbd5e1;
}

.site-footer a:hover{
color:#fff;
}

.site-footer h4{
margin-bottom:15px;
}

.copyright{
border-top:1px solid #374151;
padding:20px 0;
text-align:center;
color:#94a3b8;
}

/* ==========================
   STICKY CALL BUTTON
========================== */

.sticky-call{
position:fixed;
bottom:20px;
right:20px;
background:#16a34a;
color:#fff;
padding:16px 22px;
border-radius:50px;
font-weight:700;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:999;
}

.sticky-call:hover{
background:#15803d;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

.hero-grid{
grid-template-columns:1fr;
}

.service-grid{
grid-template-columns:1fr 1fr;
}

.steps-grid{
grid-template-columns:1fr;
}

.keyword-grid{
grid-template-columns:1fr 1fr;
}

.contractor-box{
flex-direction:column;
text-align:center;
}

.footer-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.nav{
display:none;
}

.hero h1{
font-size:2.2rem;
}

.service-grid{
grid-template-columns:1fr;
}

.keyword-grid{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
}

.btn{
text-align:center;
}

.header-call{
display:none;
}

}

