/* =========================================================
   BLH HOME – HERO + SOLUTIONS + WHY BLH + TRUSTBAR + PROJECTS
   CLEAN FINAL (MERGED + NO DUPLICATES)
========================================================= */

/* =========================================================
   0) TOKENS + BASE
========================================================= */
:root{
  --blh-header-h: 84px;
  --blh-container: 1320px;
  --blh-padding: 24px;

  --blh-accent: #ff6a00;
  --blh-green:  #0a8a4b;

  --blh-shadow-soft: 0 18px 45px rgba(0,0,0,.08);
  --blh-shadow-deep: 0 30px 80px rgba(0,0,0,.25);

  --blh-radius-lg: 16px;
  --blh-radius-md: 14px;
  --blh-radius-sm: 12px;

  --blh-text:#101828;
  --blh-muted:#667085;
}

.blh-container{
  width: min(var(--blh-container), 100% - (var(--blh-padding) * 2));
  margin-inline: auto;
}

/* =========================================================
   1) HERO
========================================================= */
body.home .blh-hero2{
  width: 100%;
  min-height: calc(100vh - var(--blh-header-h) - 150px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

body.home .blh-hero2__inner{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 50vw 50vw;
  column-gap: 0;
  align-items: stretch;
}

/* Left: video */
body.home .blh-hero2__media{
  width: 50vw;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

body.home .blh-hero2__video{
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;

  object-fit: contain;
  object-position: center;
  background: #000;
}

/* Right: content */
body.home .blh-hero2__content{
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: clamp(24px, 5vw, 120px);
  padding-right: clamp(24px, 5vw, 120px);
  padding-top: clamp(24px, 4vh, 56px);
  padding-bottom: clamp(40px, 6vh, 90px);

  color: var(--blh-text);
}

body.home .blh-hero2__kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .75;
}

body.home .blh-hero2__title{
  margin: 0 0 16px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.06;
  font-weight: 900;
}

body.home .blh-hero2__sub{
  margin: 0 0 28px;
  max-width: 560px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: #475467;
}

/* CTA */
body.home .blh-hero2 .hero-btn-group{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 1px;
}

body.home .blh-hero2 .hero-btn-group a.theme-btn.btn-one{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;
  height: 56px;
  padding: 0 26px;

  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  transition: transform .15s ease;
}

body.home .blh-hero2 .hero-btn-group a.theme-btn.btn-one.blh-hero-primary{
  background: var(--primary-color, #27C07D);
  color: #fff;
  border: 0;
}

body.home .blh-hero2 .hero-btn-group a.theme-btn.btn-one.btn-outline{
  background: var(--theme-color, #0A77E8);
  color: #fff;
  border: 0;
}

body.home .blh-hero2 .hero-btn-group a.theme-btn.btn-one:hover{
  transform: translateY(-1px);
}

/* Hero responsive */
@media (max-width: 900px){
  body.home .blh-hero2__inner{ grid-template-columns: 1fr; }
  body.home .blh-hero2__media{ width: 100%; min-height: 42vh; }
  body.home .blh-hero2__content{
    padding: 28px 24px 64px;
    text-align: center;
    align-items: center;
  }
  body.home .blh-hero2 .hero-btn-group{ justify-content: center; }
}

/* =========================================================
   2) COMMON EYEBROW (orange vertical line)
========================================================= */
body.home .blh-eyebrow{
  position: relative;
  padding-left: 18px;

  display: inline-block;
  margin-bottom: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blh-accent);
}

body.home .blh-eyebrow::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:3px;
  height:16px;
  background: var(--blh-accent);
  border-radius:2px;
  transform: translateY(-50%);
}

/* =========================================================
   3) SOLUTIONS
========================================================= */
body.home .blh-solutions{
  padding: 90px 0;
  background: #f7f8fa;
}

body.home .blh-solutions-head{ margin-bottom: 46px; }

body.home .blh-solutions-title{
  margin: 0;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.1;
  font-weight: 900;
  color: #0f172a;
}

/* grid */
body.home .blh-solutions-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 991px){
  body.home .blh-solutions-grid{ grid-template-columns: 1fr; }
}

/* card */
body.home .blh-solution-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--blh-radius-md);
  overflow: visible;
  transition: transform .35s ease;
}
body.home .blh-solution-card:hover{ transform: translateY(-6px); }

/* image */
body.home .blh-solution-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--blh-radius-md);
  box-shadow: var(--blh-shadow-soft);
}

/* overlay panel */
body.home .blh-solution-panel{
  width: calc(100% - 60px);
  margin: -70px auto 0;

  position: relative;
  background: #fff;
  border-radius: var(--blh-radius-sm);
  padding: 26px 26px 22px;
  box-shadow: var(--blh-shadow-soft);

  transition: padding-bottom .35s ease;
}

/* icon */
body.home .blh-solution-icon{
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--blh-accent);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: -22px;
  left: 22px;
}
body.home .blh-solution-icon img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* texts */
body.home .blh-solution-num{
  margin: 8px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--blh-accent);
}

body.home .blh-solution-panel h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

body.home .blh-solution-panel p{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}

/* read more */
body.home .blh-solution-readmore{
  position: absolute;
  left: 26px;
  bottom: 22px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .35s ease;
}

body.home .blh-solution-card:hover .blh-solution-readmore{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.home .blh-solution-card:hover .blh-solution-panel{
  padding-bottom: 52px;
}

body.home .blh-solution-readmore span{
  color: #101828;
  transition: color .2s ease;
}
body.home .blh-solution-readmore span:hover{ color: var(--blh-accent); }

@media (prefers-reduced-motion: reduce){
  body.home .blh-solution-card,
  body.home .blh-solution-panel,
  body.home .blh-solution-readmore,
  body.home .blh-solution-readmore span{
    transition: none !important;
  }
}

/* =========================================================
   4) WHY BLH
========================================================= */
body.home .blh-why{
  padding: 110px 0;
  background: var(--blh-green);
  color: #fff;
  position: relative;
  overflow: hidden;
}

body.home .blh-why__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* media collage */
body.home .blh-why__media{
  position: relative;
  width: 100%;
  max-width: 520px;
}

body.home .blh-why__img--main{
  border-radius: var(--blh-radius-lg);
  overflow: hidden;
  box-shadow: var(--blh-shadow-deep);
}
body.home .blh-why__img--main img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

body.home .blh-why__img--sub{
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 58%;

  border-radius: var(--blh-radius-md);
  overflow: hidden;
  box-shadow: var(--blh-shadow-deep);
}
body.home .blh-why__img--sub img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* content */
body.home .blh-why__content{ max-width: 560px; }

body.home .blh-why .blh-eyebrow{ color: #c6f6d5; }

body.home .blh-why__title{
  margin: 0 0 20px;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}

body.home .blh-why__lead{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: #e6f5ec;
}

/* CTA */
body.home .blh-why__cta{ margin-top: 10px; }

body.home .blh-why__btn{
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;

  background: #fff;
  color: var(--blh-green);

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  transition: transform .2s ease, box-shadow .2s ease;
}
body.home .blh-why__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

@media (max-width: 1024px){
  body.home .blh-why__grid{
    grid-template-columns: 1fr;
    gap: 70px;
  }

  body.home .blh-why__media{
    max-width: 600px;
    margin: 0 auto;
  }

  body.home .blh-why__img--sub{
    right: -30px;
    bottom: -30px;
  }

  body.home .blh-why__content{
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 640px){
  body.home .blh-why{ padding: 80px 0; }
  body.home .blh-why__img--sub{ display: none; }
}

/* =========================================================
   5) WHY BLH – ACCORDION (two independent columns)
========================================================= */
body.home .blh-acc-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 26px;
}

body.home .blh-acc-col{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 1024px){
  body.home .blh-acc-cols{ grid-template-columns: 1fr; }
}

body.home .blh-acc{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--blh-radius-md);
  overflow: hidden;
}

body.home .blh-acc__head{
  width: 100%;
  display: grid;
  grid-template-columns: 24px 1fr 32px;
  align-items: center;
  gap: 12px;

  padding: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;

  color: #fff;
  text-align: left;
}

body.home .blh-acc__tick{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--blh-green);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

body.home .blh-acc__title{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

body.home .blh-acc__icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  position: relative;
  justify-self: end;
}

body.home .blh-acc__icon::before,
body.home .blh-acc__icon::after{
  content:"";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  transform: translate(-50%,-50%);
  border-radius: 2px;
}

body.home .blh-acc__icon::after{
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .2s ease;
}

body.home .blh-acc__body{
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
}

body.home .blh-acc__body p{
  margin: 0 0 14px;
  color: #d6f2e2;
  font-size: 14px;
  line-height: 1.6;
}

body.home .blh-acc.is-open .blh-acc__body{
  padding: 0 16px 6px;
  max-height: 260px;
}

body.home .blh-acc.is-open .blh-acc__icon::after{
  transform: translate(-50%,-50%) rotate(0deg);
}

/* =========================================================
   6) OPTIONAL MODIFIERS
========================================================= */
body.home .blh-why.blh-why--sticky-media .blh-why__media{
  position: sticky;
  top: calc(var(--blh-header-h) + 100px);
  align-self: start;
}
@media (max-width: 1024px){
  body.home .blh-why.blh-why--sticky-media .blh-why__media{
    position: static;
    top: auto;
  }
}

body.home .blh-why.blh-why--cta-fixed .blh-why__content{
  position: relative;
  padding-bottom: 110px;
}
body.home .blh-why.blh-why--cta-fixed .blh-why__cta{
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
}
@media (max-width: 1024px){
  body.home .blh-why.blh-why--cta-fixed .blh-why__content{ padding-bottom: 0; }
  body.home .blh-why.blh-why--cta-fixed .blh-why__cta{
    position: static;
    margin-top: 24px;
  }
}

/* =========================================================
   TRUST BAR (Logo Marquee)
========================================================= */
body.home .blh-trustbar{
  padding: 22px 0;
  background: #ffffff;
  border-top: 1px solid rgba(16,24,40,.06);
  border-bottom: 1px solid rgba(16,24,40,.06);
}

body.home .blh-trustbar__inner{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

body.home .blh-trustbar__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #667085;
  text-transform: uppercase;
  white-space: nowrap;
}

body.home .blh-marquee{
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

body.home .blh-marquee__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: blh-marquee-left 38s linear infinite;
}

body.home .blh-marquee:hover .blh-marquee__track{
  animation-play-state: paused;
}

body.home .blh-marquee__group{
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

body.home .blh-marquee__group img{
  height: 34px;
  width: auto;
  display: block;
  opacity: .78;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease;
}

body.home .blh-marquee__group img:hover{
  opacity: 1;
  filter: none;
}

@keyframes blh-marquee-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 768px){
  body.home .blh-trustbar__inner{
    grid-template-columns: 1fr;
  }
  body.home .blh-trustbar__label{ display: none; }
  body.home .blh-marquee__group{
    gap: 36px;
    padding-right: 36px;
  }
  body.home .blh-marquee__group img{ height: 30px; }
}

/* =========================================================
   TRUST BAR v2 (Big cells)
========================================================= */
body.home .blh-trustbar2{
  background: #fff;
  border-top: 1px solid rgba(16,24,40,.06);
  border-bottom: 1px solid rgba(16,24,40,.06);
}

body.home .blh-trustbar2__marquee{
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

body.home .blh-trustbar2__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: blh-trustbar2-left 26s linear infinite;
}

body.home .blh-trustbar2__marquee:hover .blh-trustbar2__track{
  animation-play-state: paused;
}

body.home .blh-trustbar2__group{
  display: flex;
}

body.home .blh-trustbar2__cell{
  width: 240px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(16,24,40,.08);
}

body.home .blh-trustbar2__cell img{
  max-height: 66px;
  max-width: 160px;
  width: auto;
  height: auto;
  display: block;
  opacity: .85;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

body.home .blh-trustbar2__cell img:hover{
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

@keyframes blh-trustbar2-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 768px){
  body.home .blh-trustbar2__cell{
    width: 170px;
    height: 90px;
  }
  body.home .blh-trustbar2__cell img{
    max-height: 36px;
    max-width: 130px;
  }
}

/* =========================================================
   PROJECTS – HOVER EXPAND GALLERY (HOME)
========================================================= */
body.home .blh-projects{
  padding: 90px 0;
  background: #fff;
}

body.home .blh-proj-head{
  text-align: center;
  margin-bottom: 26px;
}

/* you decided to remove the line */
body.home .blh-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0;                 /* no line spacing */
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--blh-accent);
  text-transform: uppercase;
}
body.home .blh-projects .blh-kicker span{
  display:none !important;
}

body.home .blh-title{
  margin: 14px 0 0;
  font-size: 56px;
  line-height: 1.05;
  color: var(--blh-text);
  font-weight: 800;
}

@media (max-width: 980px){
  body.home .blh-title{ font-size: 40px; }
}
@media (max-width: 560px){
  body.home .blh-title{ font-size: 32px; }
}

/* layout */
body.home .blh-accordion{
  display: flex;
  gap: 22px;
  align-items: stretch;
  width: min(1180px, 92%);
  margin: 0 auto;
  height: 420px;
}

/* panel */
body.home .blh-panel{
  position: relative;
  flex: 1;
  border-radius: var(--blh-radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.45)),
    var(--bg) center / cover no-repeat;

  transition: flex 450ms ease, transform 450ms ease, filter 450ms ease;
  filter: saturate(.98);
}

body.home .blh-panel.is-active{
  flex: 2.4;
  filter: saturate(1.05);
}

body.home .blh-panel:hover{
  transform: translateY(-2px);
}

/* image click layer */
body.home .blh-panel-link{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* number */
body.home .blh-num{
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.35);
  line-height: 1;
  user-select: none;
  pointer-events: none;

  transition: opacity 250ms ease, transform 250ms ease;
}

body.home .blh-panel.is-active .blh-num{
  opacity: 0;
  transform: translateY(-50%) scale(.98);
}

/* card (only name clickable) */
body.home .blh-card{
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 26px;
  width: min(440px, 82%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  padding: 18px 20px;
  pointer-events: auto;

  /* slow reveal */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 520ms ease;
  transition-delay: 140ms;
  will-change: opacity, transform;
}

body.home .blh-panel.is-active .blh-card{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 220ms;
}

/* meta not clickable */
body.home .blh-meta{
  color: var(--blh-accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 4px;
  pointer-events: none;
}

/* only name clickable */
body.home .blh-card *{ pointer-events: none; }

body.home .blh-card .blh-name{
  pointer-events: auto;
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  color: var(--blh-text);
  text-decoration: none;
}


/* responsive */
@media (max-width: 900px){
  body.home .blh-accordion{
    flex-direction: column;
    height: auto;
  }
  body.home .blh-panel,
  body.home .blh-panel.is-active{
    flex: unset;
    height: 240px;
  }
  body.home .blh-num{
    top: 26px;
    left: 18px;
    transform: none;
    font-size: 88px;
    opacity: .35;
  }
  body.home .blh-panel.is-active .blh-num{
    opacity: 0;
  }
}
