:root{--navy:#0b2545;--blue:#134f8f;--red:#c62828;--light:#f6f8fb;--text:#1b1f24;--muted:#5b6573;--white:#fff;--border:#dfe5ee}*{box-sizing:border-box}body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);line-height:1.6;background:#fff}a{color:var(--blue);text-decoration:none}a:hover{text-decoration:underline}.topbar{background:var(--navy);color:#fff;padding:8px 20px;text-align:center;font-weight:700}.topbar a{color:#fff}.header{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:20}.nav{max-width:1180px;margin:auto;display:flex;align-items:center;justify-content:space-between;padding:14px 20px;gap:20px}.logo{font-size:24px;font-weight:900;color:var(--navy);letter-spacing:.3px}.logo span{color:var(--red)}.navlinks{display:flex;gap:18px;align-items:center;flex-wrap:wrap}.navlinks a{color:var(--navy);font-weight:700}.callbtn,.btn{background:var(--red);color:#fff!important;padding:10px 16px;border-radius:999px;font-weight:800;display:inline-block}.btn.secondary{background:var(--blue)}.hero{background:linear-gradient(110deg,rgba(11,37,69,.95),rgba(19,79,143,.88)),url('/img/roof-bg.jpg');background-size:cover;background-position:center;color:#fff;padding:76px 20px}.hero-inner{max-width:1120px;margin:auto}.hero h1{font-size:clamp(34px,5vw,58px);line-height:1.05;margin:0 0 16px}.hero p{font-size:20px;max-width:760px;margin:0 0 24px}.hero-actions{display:flex;gap:12px;flex-wrap:wrap}.trust{background:var(--light);border-bottom:1px solid var(--border)}.trust-grid{max-width:1120px;margin:auto;display:grid;grid-template-columns:repeat(4,1fr);gap:12px;padding:18px 20px;font-weight:800;color:var(--navy);text-align:center}.section{max-width:1120px;margin:auto;padding:54px 20px}.section h2{font-size:32px;color:var(--navy);margin:0 0 16px}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.card{border:1px solid var(--border);border-radius:16px;padding:24px;background:#fff;box-shadow:0 8px 24px rgba(11,37,69,.06)}.card h3{margin-top:0;color:var(--navy)}.split{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}.cta{background:var(--navy);color:#fff;border-radius:22px;padding:30px}.cta h2,.cta h3{color:#fff;margin-top:0}.list{padding-left:20px}.list li{margin:8px 0}.service-links{display:flex;flex-wrap:wrap;gap:10px}.service-links a{background:var(--light);border:1px solid var(--border);padding:9px 12px;border-radius:999px;font-weight:700}.footer{background:#071a31;color:#fff;padding:34px 20px;margin-top:30px}.footer-inner{max-width:1120px;margin:auto;display:grid;grid-template-columns:2fr 1fr 1fr;gap:24px}.footer a{color:#fff}.breadcrumb{font-size:14px;color:var(--muted);margin-bottom:10px}.note{background:#fff7e6;border-left:4px solid #f0a500;padding:14px 16px;border-radius:8px}.faq details{border:1px solid var(--border);border-radius:12px;padding:14px 16px;margin:10px 0;background:#fff}.faq summary{font-weight:800;color:var(--navy);cursor:pointer}.formbox{border:1px solid var(--border);border-radius:16px;padding:22px;background:var(--light)}input,textarea,select{width:100%;padding:12px;border:1px solid var(--border);border-radius:10px;margin:7px 0 12px;font:inherit}button{border:0;cursor:pointer}.map-embed{background:var(--light);border:1px dashed var(--border);border-radius:16px;padding:24px;text-align:center;color:var(--muted)}@media(max-width:850px){.nav{align-items:flex-start;flex-direction:column}.navlinks{gap:12px}.trust-grid,.grid,.split,.footer-inner{grid-template-columns:1fr}.hero{padding:54px 20px}.section{padding:38px 20px}}

.contact-strip{padding-top:18px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.hidden{display:none!important}@media(max-width:850px){.form-grid{grid-template-columns:1fr}}


/* Conversion upgrade: top-right lead form */
.lead-form-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(11,37,69,.18);
  position: sticky;
  top: 92px;
}

.lead-form-card h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 24px;
}

.lead-form-card p {
  margin: 0 0 14px;
  color: #eef5ff;
}

.lead-form-card label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin: 8px 0 3px;
  color: #fff;
}

.lead-form-card input,
.lead-form-card select {
  background: #fff;
  color: var(--text);
  border: 0;
  border-radius: 10px;
  padding: 11px;
  margin: 0 0 8px;
  width: 100%;
}

.lead-form-card .form-submit {
  width: 100%;
  text-align: center;
  margin-top: 6px;
  border-radius: 12px;
  padding: 12px 14px;
}

.quick-call {
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  color: #fff;
}

.quick-call a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
}

.mobile-sticky-cta {
  display: none;
}

@media(max-width:850px) {
  .lead-form-card {
    position: static;
    top: auto;
  }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    box-shadow: 0 -6px 20px rgba(0,0,0,.18);
  }

  .mobile-sticky-cta a {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-weight: 900;
  }

  .mobile-sticky-cta a + a {
    background: var(--blue);
  }

  body {
    padding-bottom: 58px;
  }
}
