:root{
  --hbj-green:#004D40;
  --hbj-green-dark:#003B32;
  --hbj-green-soft:#EAF2F0;

  --hbj-gold:#FFB612;
  --hbj-gold-hover:#E9A300;

  --hbj-navy:#0A1D35;
  --hbj-text:#172235;
  --hbj-muted:#5D6672;

  --hbj-cream:#F7F5F0;
  --hbj-light:#F4F7F6;
  --hbj-border:#DDE4E2;
  --hbj-white:#FFFFFF;
}

.hbj-homepage,
.hbj-homepage *{
  box-sizing:border-box;
}

.hbj-homepage{
  width:100%;
  overflow:hidden;
  color:var(--hbj-text);
  background:#fff;
  font-family:Arial,Helvetica,sans-serif;
}

.hbj-home-shell{
  width:min(1240px,calc(100% - 40px));
  margin:0 auto;
}


/* ======================
   HERO
====================== */

.hbj-hero{
  position:relative;
  min-height:640px;
  background:
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=85")
    center/cover no-repeat;
}

.hbj-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,59,50,.96) 0%,
      rgba(0,59,50,.86) 48%,
      rgba(0,59,50,.55) 100%
    );
}

.hbj-hero-grid{
  position:relative;
  z-index:2;
  min-height:640px;
  display:grid;
  grid-template-columns:1.45fr .75fr;
  gap:70px;
  align-items:center;
}

.hbj-kicker,
.hbj-label,
.hbj-section-heading > span,
.hbj-final-inner > div > span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--hbj-gold);
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.hbj-kicker::before,
.hbj-label::before{
  content:"";
  width:35px;
  height:3px;
  background:var(--hbj-gold);
}

.hbj-hero h1{
  max-width:770px;
  margin:18px 0 22px;
  color:#fff;
  font-size:66px;
  line-height:1.05;
  letter-spacing:-2px;
}

.hbj-hero-lead{
  max-width:730px;
  margin:0;
  color:#E6EFEC;
  font-size:18px;
  line-height:1.75;
}

.hbj-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:31px;
}

.hbj-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 25px;
  border-radius:3px;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  text-transform:uppercase;
  transition:.22s ease;
}

.hbj-btn-gold{
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
}

.hbj-btn-gold:hover{
  background:var(--hbj-gold-hover);
  transform:translateY(-2px);
}

.hbj-btn-outline{
  border:1px solid rgba(255,255,255,.8);
  color:#fff;
}

.hbj-btn-outline:hover{
  background:#fff;
  color:var(--hbj-green-dark);
}

.hbj-hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  margin-top:27px;
}

.hbj-hero-trust span{
  color:#D7E7E3;
  font-size:13px;
}


/* HERO CARD */

.hbj-hero-card{
  padding:36px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:6px;
  background:rgba(0,59,50,.94);
  color:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.hbj-card-label{
  color:var(--hbj-gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
}

.hbj-hero-card h2{
  margin:14px 0;
  color:#fff;
  font-size:30px;
  line-height:1.25;
}

.hbj-hero-card p{
  margin:0;
  color:#D6E5E2;
  font-size:14px;
  line-height:1.75;
}

.hbj-card-btn{
  display:inline-block;
  margin-top:23px;
  padding:15px 19px;
  border-radius:3px;
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
}

.hbj-card-divider{
  height:1px;
  margin:27px 0;
  background:rgba(255,255,255,.17);
}

.hbj-hero-card strong,
.hbj-hero-card small{
  display:block;
}

.hbj-hero-card strong{
  margin-bottom:7px;
  font-size:15px;
}

.hbj-hero-card small{
  color:#BBD0CB;
  font-size:13px;
  line-height:1.65;
}


/* ======================
   TRUST BAR
====================== */

.hbj-trustbar{
  background:#fff;
  border-bottom:1px solid var(--hbj-border);
}

.hbj-trustbar-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.hbj-trustbar article{
  display:flex;
  gap:13px;
  padding:28px 24px;
  border-right:1px solid var(--hbj-border);
}

.hbj-trustbar article:first-child{
  border-left:1px solid var(--hbj-border);
}

.hbj-trust-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:43px;
  height:43px;
  flex:0 0 43px;
  border-radius:50%;
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
  font-weight:900;
}

.hbj-trustbar h3{
  margin:1px 0 5px;
  color:var(--hbj-green-dark);
  font-size:16px;
}

.hbj-trustbar p{
  margin:0;
  color:var(--hbj-muted);
  font-size:13px;
  line-height:1.55;
}


/* ======================
   SECTIONS
====================== */

.hbj-section{
  padding:95px 0;
}

.hbj-services-section,
.hbj-blog-section{
  background:var(--hbj-cream);
}

.hbj-section-heading{
  max-width:780px;
  margin:0 auto 48px;
  text-align:center;
}

.hbj-section-heading > span{
  color:var(--hbj-green);
}

.hbj-section-heading h2{
  margin:13px 0 15px;
  color:var(--hbj-green-dark);
  font-size:44px;
  line-height:1.17;
  letter-spacing:-1px;
}

.hbj-section-heading p{
  margin:0;
  color:var(--hbj-muted);
  font-size:16px;
  line-height:1.75;
}


/* ======================
   SERVICES
====================== */

.hbj-services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.hbj-service-card{
  position:relative;
  overflow:hidden;
  padding:30px 26px;
  border:1px solid var(--hbj-border);
  border-radius:6px;
  background:#fff;
  transition:.25s ease;
}

.hbj-service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:3px;
  background:var(--hbj-gold);
  transition:width .3s ease;
}

.hbj-service-card:hover{
  transform:translateY(-5px);
  border-color:#C8D9D5;
  box-shadow:0 18px 40px rgba(0,77,64,.09);
}

.hbj-service-card:hover::before{
  width:100%;
}

.hbj-service-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  margin-bottom:22px;
  border-radius:5px;
  background:var(--hbj-green-dark);
  color:var(--hbj-gold);
  font-size:22px;
}

.hbj-service-card h3{
  margin:0 0 12px;
  color:var(--hbj-green-dark);
  font-size:20px;
  line-height:1.3;
}

.hbj-service-card p{
  min-height:120px;
  margin:0 0 22px;
  color:var(--hbj-muted);
  font-size:14px;
  line-height:1.7;
}

.hbj-service-card a{
  color:var(--hbj-green);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
}

.hbj-service-card a:hover{
  color:var(--hbj-gold-hover);
}


/* ======================
   ABOUT
====================== */

.hbj-about{
  background:#fff;
}

.hbj-about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:75px;
  align-items:center;
}

.hbj-about-image{
  position:relative;
}

.hbj-about-image img{
  display:block;
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:7px;
}

.hbj-about-badge{
  position:absolute;
  right:-25px;
  bottom:30px;
  padding:20px 25px;
  border-radius:5px;
  background:var(--hbj-green-dark);
  box-shadow:0 15px 35px rgba(0,59,50,.25);
}

.hbj-about-badge strong,
.hbj-about-badge span{
  display:block;
}

.hbj-about-badge strong{
  color:var(--hbj-gold);
  font-size:20px;
}

.hbj-about-badge span{
  margin-top:4px;
  color:#fff;
  font-size:14px;
}

.hbj-about-copy h2{
  margin:15px 0 22px;
  color:var(--hbj-green-dark);
  font-size:44px;
  line-height:1.17;
  letter-spacing:-1px;
}

.hbj-about-copy > p{
  margin:0 0 17px;
  color:var(--hbj-muted);
  font-size:16px;
  line-height:1.8;
}

.hbj-about-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
  margin:27px 0 30px;
}

.hbj-about-points > div{
  display:flex;
  align-items:center;
  gap:10px;
}

.hbj-about-points span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:27px;
  height:27px;
  flex:0 0 27px;
  border-radius:50%;
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
  font-size:12px;
  font-weight:900;
}

.hbj-about-points p{
  margin:0;
  color:var(--hbj-text);
  font-size:14px;
}

.hbj-text-link{
  color:var(--hbj-green);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}


/* ======================
   WHY
====================== */

.hbj-why{
  padding:95px 0;
  background:var(--hbj-green-dark);
}

.hbj-heading-light h2{
  color:#fff;
}

.hbj-heading-light > span{
  color:var(--hbj-gold);
}

.hbj-heading-light p{
  color:#C7D8D4;
}

.hbj-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.hbj-why-grid article{
  padding:27px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:5px;
  background:rgba(255,255,255,.04);
}

.hbj-why-grid strong{
  display:block;
  margin-bottom:24px;
  color:var(--hbj-gold);
  font-size:31px;
}

.hbj-why-grid h3{
  margin:0 0 11px;
  color:#fff;
  font-size:18px;
}

.hbj-why-grid p{
  margin:0;
  color:#C9D8D5;
  font-size:14px;
  line-height:1.7;
}


/* ======================
   PROCESS
====================== */

.hbj-process{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.hbj-process article{
  width:210px;
  text-align:center;
}

.hbj-step{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  margin:0 auto 18px;
  border-radius:50%;
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
  font-size:18px;
  font-weight:900;
}

.hbj-process h3{
  margin:0 0 9px;
  color:var(--hbj-green-dark);
  font-size:17px;
}

.hbj-process p{
  margin:0;
  color:var(--hbj-muted);
  font-size:13px;
  line-height:1.65;
}

.hbj-process-line{
  width:80px;
  height:1px;
  margin-top:27px;
  background:#C9D4D1;
}


/* ======================
   LOCAL SEO SECTION
====================== */

.hbj-local-section{
  padding:90px 0;
  background:var(--hbj-green-soft);
}

.hbj-local-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:65px;
  align-items:center;
}

.hbj-local-grid h2{
  margin:15px 0 20px;
  color:var(--hbj-green-dark);
  font-size:43px;
  line-height:1.18;
}

.hbj-local-grid > div:first-child > p{
  margin:0 0 17px;
  color:var(--hbj-muted);
  font-size:16px;
  line-height:1.8;
}

.hbj-local-grid .hbj-btn{
  margin-top:12px;
}

.hbj-local-box{
  padding:34px;
  border-radius:6px;
  background:#fff;
  box-shadow:0 18px 45px rgba(0,77,64,.09);
}

.hbj-local-box > span{
  color:var(--hbj-green);
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
}

.hbj-local-box h3{
  margin:12px 0 20px;
  color:var(--hbj-green-dark);
  font-size:25px;
}

.hbj-local-box ul{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.hbj-local-box li{
  position:relative;
  padding-left:23px;
  color:var(--hbj-muted);
  font-size:14px;
}

.hbj-local-box li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--hbj-green);
  font-weight:900;
}


/* ======================
   BLOG
====================== */

.hbj-section-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:42px;
}

.hbj-heading-left{
  margin:0;
  text-align:left;
}

.hbj-view-all{
  margin-bottom:8px;
  color:var(--hbj-green);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.hbj-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.hbj-blog-grid article{
  overflow:hidden;
  border-radius:6px;
  background:#fff;
  box-shadow:0 9px 28px rgba(0,77,64,.07);
}

.hbj-blog-grid img{
  display:block;
  width:100%;
  height:230px;
  object-fit:cover;
}

.hbj-blog-grid article > span,
.hbj-blog-grid h3,
.hbj-blog-grid article > a{
  margin-left:23px;
  margin-right:23px;
}

.hbj-blog-grid article > span{
  display:block;
  margin-top:23px;
  color:var(--hbj-green);
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
}

.hbj-blog-grid h3{
  margin-top:9px;
  margin-bottom:20px;
  color:var(--hbj-green-dark);
  font-size:19px;
  line-height:1.4;
}

.hbj-blog-grid article > a{
  display:inline-block;
  margin-bottom:25px;
  color:var(--hbj-green);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
}


/* ======================
   FAQ
====================== */

.hbj-faq{
  padding:95px 0;
  background:#fff;
}

.hbj-faq-list{
  max-width:900px;
  margin:0 auto;
}

.hbj-faq-item{
  border-top:1px solid var(--hbj-border);
}

.hbj-faq-item:last-child{
  border-bottom:1px solid var(--hbj-border);
}

.hbj-faq-item summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:23px 0;
  color:var(--hbj-green-dark);
  font-size:16px;
  font-weight:700;
  list-style:none;
  cursor:pointer;
}

.hbj-faq-item summary::-webkit-details-marker{
  display:none;
}

.hbj-faq-item summary span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  flex:0 0 30px;
  border-radius:50%;
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
  font-size:20px;
  transition:.2s ease;
}

.hbj-faq-item[open] summary span{
  transform:rotate(45deg);
}

.hbj-faq-item > div{
  padding:0 50px 23px 0;
}

.hbj-faq-item p{
  margin:0;
  color:var(--hbj-muted);
  font-size:14px;
  line-height:1.8;
}

.hbj-faq-item a{
  color:var(--hbj-green);
  font-weight:700;
}


/* ======================
   FINAL CTA
====================== */

.hbj-final-cta{
  padding:65px 0;
  background:var(--hbj-green);
}

.hbj-final-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hbj-final-inner span{
  color:#DCEBE7;
}

.hbj-final-inner h2{
  margin:9px 0 8px;
  color:#fff;
  font-size:36px;
}

.hbj-final-inner p{
  margin:0;
  color:#D7E7E3;
  font-size:15px;
}

.hbj-final-inner > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  min-height:54px;
  padding:0 24px;
  border-radius:3px;
  background:var(--hbj-gold);
  color:var(--hbj-green-dark);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}


/* ======================
   TABLET
====================== */

@media(max-width:1050px){

  .hbj-hero-grid{
    grid-template-columns:1.2fr .8fr;
    gap:40px;
  }

  .hbj-hero h1{
    font-size:55px;
  }

  .hbj-trustbar-grid,
  .hbj-why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hbj-services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hbj-about-grid,
  .hbj-local-grid{
    gap:45px;
  }

}


/* ======================
   TABLET / MOBILE
====================== */

@media(max-width:820px){

  .hbj-hero{
    min-height:auto;
  }

  .hbj-hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:80px;
    padding-bottom:80px;
  }

  .hbj-hero h1{
    font-size:48px;
  }

  .hbj-hero-card{
    max-width:570px;
  }

  .hbj-about-grid,
  .hbj-local-grid{
    grid-template-columns:1fr;
  }

  .hbj-about-badge{
    right:20px;
  }

  .hbj-process{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
  }

  .hbj-process article{
    width:auto;
  }

  .hbj-process-line{
    display:none;
  }

  .hbj-blog-grid{
    grid-template-columns:1fr 1fr;
  }

}


/* ======================
   MOBILE
====================== */

@media(max-width:640px){

  .hbj-home-shell{
    width:min(100% - 28px,1240px);
  }

  .hbj-hero-grid{
    padding-top:65px;
    padding-bottom:65px;
  }

  .hbj-hero h1{
    font-size:39px;
    letter-spacing:-1px;
  }

  .hbj-hero-lead{
    font-size:16px;
  }

  .hbj-hero-actions{
    flex-direction:column;
  }

  .hbj-btn{
    width:100%;
  }

  .hbj-hero-trust{
    flex-direction:column;
  }

  .hbj-hero-card{
    padding:27px 22px;
  }

  .hbj-trustbar-grid,
  .hbj-services-grid,
  .hbj-why-grid,
  .hbj-blog-grid{
    grid-template-columns:1fr;
  }

  .hbj-trustbar article,
  .hbj-trustbar article:first-child{
    border-left:0;
    border-right:0;
    border-bottom:1px solid var(--hbj-border);
  }

  .hbj-section,
  .hbj-why,
  .hbj-faq,
  .hbj-local-section{
    padding:65px 0;
  }

  .hbj-section-heading h2,
  .hbj-about-copy h2,
  .hbj-local-grid h2{
    font-size:34px;
  }

  .hbj-service-card p{
    min-height:0;
  }

  .hbj-about-image img{
    height:370px;
  }

  .hbj-about-points{
    grid-template-columns:1fr;
  }

  .hbj-process{
    grid-template-columns:1fr;
  }

  .hbj-section-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .hbj-blog-grid img{
    height:220px;
  }

  .hbj-final-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .hbj-final-inner h2{
    font-size:31px;
  }

  .hbj-final-inner > a{
    width:100%;
  }

  .hbj-faq-item > div{
    padding-right:0;
  }

}