:root{
  --blue:#0b4ea2;
  --navy:#061d35;
  --text:#0e1726;
  --muted:#5c6675;
  --light:#f5f8fc;
  --white:#ffffff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
}
.container{width:min(1120px,92%);margin:0 auto}
.site-header{
  background:#fff;
  border-bottom:1px solid #e8edf5;
  position:sticky;
  top:0;
  z-index:10;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  font-size:42px;
  font-weight:900;
  letter-spacing:-3px;
  color:var(--blue);
  line-height:1;
}
.brand strong{
  display:block;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:17px;
}
.brand span{font-size:13px;color:var(--muted)}
.phone-link{
  color:#fff;
  background:var(--blue);
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}
.hero{
  background:
    radial-gradient(circle at 80% 20%, rgba(11,78,162,.12), transparent 35%),
    linear-gradient(110deg,#fff 0%,#fff 48%,#edf5ff 48%,#edf5ff 100%);
  padding:76px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  color:var(--blue);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:2px;
  margin:0 0 12px;
}
h1{
  font-size:clamp(48px,7vw,86px);
  line-height:.95;
  margin:0;
  text-transform:uppercase;
  letter-spacing:-2px;
}
.subhead{
  color:var(--blue);
  font-size:30px;
  font-weight:800;
  margin:22px 0 28px;
}
.benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:30px;
}
.benefits div{
  text-align:center;
  background:#fff;
  border:1px solid #dde6f2;
  border-radius:18px;
  padding:16px 10px;
  box-shadow:0 12px 30px rgba(6,29,53,.06);
}
.benefits span{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin:0 auto 10px;
  border:2px solid var(--blue);
  color:var(--blue);
  border-radius:50%;
  font-weight:900;
}
.benefits p{
  margin:0;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.cta-row{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-block;
  padding:16px 22px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
}
.primary{background:var(--blue);color:#fff}
.secondary{border:2px solid var(--blue);color:var(--blue);background:#fff}
.hero-card{position:relative}
.photo-card{
  min-height:520px;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(145deg,#b8c5d5,#f8fbff);
  box-shadow:0 25px 70px rgba(6,29,53,.18);
  display:grid;
  place-items:center;
}
.house-visual{width:78%;height:320px;position:relative}
.roof{
  width:80%;
  height:110px;
  background:var(--navy);
  clip-path:polygon(50% 0,100% 100%,0 100%);
  margin:0 auto;
}
.home-box{
  background:#fff;
  border:8px solid #dbe5ef;
  min-height:210px;
  margin-top:-12px;
  display:flex;
  justify-content:space-around;
  align-items:end;
  padding:45px 35px 0;
}
.window{width:72px;height:70px;background:#f2c46d;border:8px solid #0b4ea2}
.door{width:74px;height:120px;background:#10233b;border-radius:8px 8px 0 0}
.trust-box{
  position:absolute;
  right:24px;
  bottom:24px;
  max-width:310px;
  background:rgba(255,255,255,.92);
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 35px rgba(6,29,53,.14);
}
.trust-box strong{
  display:block;
  color:var(--blue);
  text-transform:uppercase;
  font-size:20px;
}
.trust-box p{margin:8px 0 0;color:var(--text)}
.blue-band{
  background:linear-gradient(90deg,var(--navy),var(--blue));
  color:#fff;
  padding:28px 0;
}
.band-content{display:flex;align-items:center;gap:22px}
.circle-icon{
  width:68px;height:68px;
  border:2px solid #fff;
  border-radius:50%;
  display:grid;place-items:center;
  font-size:30px;
}
.band-content p{font-size:22px;margin:0}
.section{padding:74px 0}
.section-header{text-align:center;margin-bottom:34px}
.section-header h2,.assurance h2{
  margin:0 0 10px;
  font-size:42px;
  text-transform:uppercase;
  color:var(--navy);
}
.section-header p,.assurance p{font-size:20px;color:var(--muted);margin:0}
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
}
.steps-card,.lead-form,.assurance{
  background:var(--light);
  border-radius:26px;
  padding:32px;
  border:1px solid #e2e9f2;
}
.steps-card h3,.lead-form h3{font-size:28px;margin:0 0 22px;color:var(--navy)}
ol{margin:0;padding-left:22px}
li{margin-bottom:20px;font-size:18px}
li strong{display:block;color:var(--blue)}
li span{color:var(--muted)}
.lead-form{
  background:#fff;
  box-shadow:0 18px 50px rgba(6,29,53,.1);
}
input,select,textarea{
  width:100%;
  margin-bottom:14px;
  padding:16px;
  border:1px solid #cfd9e6;
  border-radius:12px;
  font-size:16px;
  font-family:inherit;
}
textarea{min-height:120px;resize:vertical}
button{
  width:100%;
  border:0;
  background:var(--blue);
  color:#fff;
  padding:17px;
  border-radius:12px;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}
.fine-print{text-align:center;color:var(--muted)}
.fine-print a{color:var(--blue);font-weight:900}
.assurance{text-align:center;max-width:900px;margin:0 auto}
footer{
  background:var(--navy);
  color:#fff;
  padding:34px 0;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
}
footer a{color:#fff;font-weight:900;text-decoration:none}
footer p{margin:6px 0 0;color:#c5d2e2}

@media(max-width:850px){
  .hero-grid,.split{grid-template-columns:1fr}
  .benefits{grid-template-columns:repeat(2,1fr)}
  .nav,.footer-grid{align-items:flex-start}
  .phone-link{font-size:14px;padding:10px 12px}
  .photo-card{min-height:360px}
  .trust-box{position:static;margin-top:16px}
}
