/* =========================================================
   HOLS-FIELD NIG. LTD. — CLEAN HOMEPAGE CSS
   REPLACE THE ENTIRE OLD home.css WITH THIS FILE
   ========================================================= */

:root{
  --orange:#ff6a00;
  --orange-dark:#e85b00;
  --black:#050505;
  --dark:#080909;
  --card:#0d0f10;
  --white:#fff;
  --muted:#929292;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:"Inter",Arial,sans-serif;
  overflow-x:hidden;
}

img{max-width:100%}
main{overflow:hidden}

.section-container,
.impact-container,
.cta-container,
.footer-container,
.footer-bottom{
  width:min(1380px,calc(100% - 96px));
  margin-left:auto;
  margin-right:auto;
}


/* =========================================================
   NAVBAR — PREMIUM GLASS / OPTION 06
   ========================================================= */

.site-header{
  position:absolute;
  top:18px;
  left:0;
  width:100%;
  z-index:9999;
  padding:0 30px;
  background:transparent;
}

.header-container{
  position:relative;
  width:min(1740px,100%);
  height:78px;
  min-height:78px;
  margin:auto;
  padding:0 12px 0 0;

  display:flex;
  align-items:center;

  background:rgba(7,8,9,.93);
  border:1px solid rgba(255,255,255,.16);
  border-radius:17px;

  box-shadow:
    0 22px 55px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  overflow:hidden;
}

.header-container::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,106,0,.45),transparent);
  pointer-events:none;
}


/* LOGO */

.site-logo{
  position:relative;
  z-index:2;

  height:100%;
  min-width:270px;
  padding:0 27px;

  display:flex;
  align-items:center;

  color:#fff;
  text-decoration:none;

  font-family:"Space Grotesk",sans-serif;
  font-size:21px;
  font-weight:700;
  letter-spacing:-.8px;
  white-space:nowrap;

  border-right:1px solid rgba(255,255,255,.10);
}

.site-logo::before{
  content:"•••\A•••\A•••";
  white-space:pre;

  width:34px;
  margin-right:14px;

  color:var(--orange);
  font-family:Arial,sans-serif;
  font-size:17px;
  font-weight:900;
  line-height:8px;
  letter-spacing:2px;
  text-align:center;
  text-shadow:0 0 9px rgba(255,106,0,.35);
}

.site-logo span{color:var(--orange)}

.site-logo small{
  margin-left:7px;
  color:rgba(255,255,255,.48);
  font-family:"Inter",sans-serif;
  font-size:7px;
  font-weight:700;
  letter-spacing:1.4px;
}


/* NAV LINKS */

.main-nav{
  height:100%;
  flex:1;
  min-width:0;

  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.main-nav>a:not(.header-cta){
  position:relative;
  height:100%;
  padding:0 17px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:rgba(255,255,255,.76);
  text-decoration:none;
  white-space:nowrap;

  font-family:"Inter",sans-serif;
  font-size:12px;
  font-weight:650;
  letter-spacing:.05px;

  transition:color .25s ease,background .25s ease;
}

.main-nav>a:not(.header-cta)::before{
  content:"";
  position:absolute;
  right:0;
  top:22px;
  width:1px;
  height:34px;
  background:rgba(255,255,255,.08);
}

.main-nav>a:nth-last-child(2)::before{display:none}

.main-nav>a:not(.header-cta):hover{
  color:#fff;
  background:linear-gradient(180deg,rgba(255,106,0,.10),transparent);
}

.main-nav>a.active{
  color:#fff;
  background:linear-gradient(180deg,rgba(255,106,0,.12),transparent);
}

.main-nav>a.active::after{
  content:"";
  position:absolute;
  left:24%;
  right:24%;
  bottom:0;
  height:3px;
  background:var(--orange);
  border-radius:3px 3px 0 0;
  box-shadow:0 0 12px rgba(255,106,0,.7);
}


/* CTA */

.main-nav>a.header-cta{
  position:relative;
  height:52px;
  min-width:174px;
  margin-left:12px;
  padding:0 21px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  background:linear-gradient(135deg,#ff7800,#ff5b00);
  border:1px solid rgba(255,155,70,.8);
  border-radius:10px;

  text-decoration:none;
  text-transform:uppercase;

  font-family:"Inter",sans-serif;
  font-size:10px;
  font-weight:800;
  letter-spacing:.7px;

  box-shadow:0 9px 28px rgba(255,106,0,.22);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.main-nav>a.header-cta::after{
  content:"→";
  margin-left:12px;
  font-size:16px;
  transition:transform .25s ease;
}

.main-nav>a.header-cta:hover{
  color:#fff;
  background:linear-gradient(135deg,#ff891b,#ff6400);
  transform:translateY(-2px);
  box-shadow:0 14px 35px rgba(255,106,0,.38);
}

.main-nav>a.header-cta:hover::after{transform:translateX(4px)}

.mobile-menu-toggle{
  display:none;
  width:45px;
  height:45px;
  margin-left:auto;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  background:rgba(255,106,0,.07);
  border:1px solid rgba(255,106,0,.45);
  border-radius:10px;
  font-size:18px;
  cursor:pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.home-hero{
  position:relative;
  min-height:720px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  background:
    linear-gradient(90deg,rgba(0,0,0,.84) 0%,rgba(0,0,0,.62) 42%,rgba(0,0,0,.24) 100%),
    url("../images/home-hero.png") center/cover no-repeat;

  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.50),rgba(0,0,0,.05) 38%,rgba(0,0,0,.58));
  pointer-events:none;
}

.hero-container{
  position:relative;
  z-index:2;
  width:min(1380px,calc(100% - 96px));
  min-height:615px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding-top:100px;
  padding-bottom:28px;
}

.hero-content{width:65%;max-width:820px}

.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:20px;
  color:var(--orange);
  font-size:11px;
  font-weight:800;
  letter-spacing:4px;
  text-transform:uppercase;
}

.hero-eyebrow span{
  width:34px;
  height:2px;
  display:block;
  background:var(--orange);
}

.hero-title{
  margin:0;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(64px,6vw,104px);
  font-weight:700;
  line-height:.88;
  letter-spacing:-5px;
  text-transform:uppercase;
}

.hero-title span{display:block}
.hero-title-white{color:#fff}
.hero-title-orange{color:var(--orange)}

.hero-subtitle{
  margin:26px 0 14px;
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(28px,2.7vw,47px);
  font-weight:600;
  line-height:1;
  letter-spacing:-2px;
}

.hero-services-line{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-bottom:20px;
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
}

.hero-services-line b{color:var(--orange)}

.hero-description{
  max-width:680px;
  margin:0 0 28px;
  color:rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  align-items:center;
  gap:14px;
}

.btn{
  min-height:50px;
  padding:0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:.8px;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  color:#fff;
  background:var(--orange);
  border:1px solid var(--orange);
}

.btn-primary:hover{background:var(--orange-dark)}

.btn-outline{
  color:#fff;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.45);
}

.btn-outline:hover{border-color:var(--orange)}


/* TRUST CARD */

.hero-trust-card{
  width:210px;
  min-height:205px;
  margin-right:18px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:rgba(9,10,10,.67);
  border:1px solid rgba(255,106,0,.35);
  border-radius:13px;

  backdrop-filter:blur(9px);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.trust-icon{
  width:48px;
  height:48px;
  margin-bottom:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  border:1px solid var(--orange);
  border-radius:50%;
  font-size:18px;
}

.hero-trust-card h3{
  margin:2px 0;
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
}


/* HERO STATS */

.hero-stats{
  position:relative;
  z-index:5;
  width:min(1380px,calc(100% - 96px));
  min-height:84px;
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  background:rgba(5,5,5,.76);
  border:1px solid rgba(255,255,255,.14);
  border-bottom:0;
}

.hero-stat{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 28px;
  border-right:1px solid rgba(255,255,255,.13);
}

.hero-stat:last-child{border-right:0}

.stat-icon{color:var(--orange);font-size:25px}

.hero-stat strong{
  display:block;
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:27px;
  line-height:1;
}

.hero-stat span{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.55);
  font-size:8px;
  font-weight:700;
  letter-spacing:1px;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading{margin-bottom:52px}
.section-heading.centered{text-align:center}

.section-label{
  display:block;
  margin-bottom:14px;
  color:var(--orange);
  font-size:10px;
  font-weight:800;
  letter-spacing:4px;
  text-transform:uppercase;
}

.section-heading h2{
  margin:0;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(40px,4vw,62px);
  font-weight:700;
  line-height:.95;
  letter-spacing:-2.5px;
}

.section-heading h2 span{color:var(--orange)}

.section-heading p{
  max-width:700px;
  margin:16px auto 0;
  color:#858585;
  font-size:13px;
  line-height:1.7;
}


/* =========================================================
   SERVICES
   ========================================================= */

.home-services{
  padding:105px 0 115px;
  background:radial-gradient(circle at 50% 0%,rgba(255,106,0,.04),transparent 45%),#070808;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card{
  overflow:hidden;
  background:#0c0d0e;
  border:1px solid rgba(255,255,255,.12);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,106,0,.55);
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.service-image{
  position:relative;
  height:205px;
  overflow:hidden;
  background:#111;
}

.service-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}

.service-card:hover .service-image img{transform:scale(1.04)}

.service-number{
  position:absolute;
  top:0;
  left:0;
  min-width:40px;
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:var(--orange);
  font-size:11px;
  font-weight:800;
}

.service-content{
  position:relative;
  min-height:245px;
  padding:25px;
}

.service-icon{
  position:relative;
  z-index:3;
  width:48px;
  height:48px;
  margin-top:-50px;
  margin-bottom:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:var(--orange);
  background:#090a0a;
  border:1px solid var(--orange);
  border-radius:50%;
  font-size:18px;
}

.service-content h3{
  margin:0 0 12px;
  font-family:"Space Grotesk",sans-serif;
  font-size:18px;
  font-weight:600;
}

.service-content p{
  margin:0;
  color:#898989;
  font-size:11px;
  line-height:1.7;
}

.service-content a{
  position:absolute;
  left:25px;
  bottom:25px;
  color:var(--orange);
  text-decoration:none;
  font-size:9px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}


/* =========================================================
   IMPACT
   ========================================================= */

.home-impact{
  position:relative;
  min-height:315px;
  display:flex;
  align-items:center;

  background:
    linear-gradient(90deg,rgba(0,0,0,.90),rgba(0,0,0,.56)),
    url("../images/built-impact.jpg") center/cover no-repeat;

  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.impact-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.38),transparent);
  pointer-events:none;
}

.impact-container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:60px;
  align-items:center;
}

.impact-intro h2{
  margin:0;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(34px,3.4vw,54px);
  line-height:.92;
  letter-spacing:-2px;
}

.impact-intro h2 span{
  display:block;
  color:var(--orange);
}

.impact-intro p{
  max-width:400px;
  margin:18px 0;
  color:#aaa;
  font-size:11px;
  line-height:1.7;
}

.impact-button{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 17px;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  text-decoration:none;
  font-size:9px;
  font-weight:700;
  text-transform:uppercase;
}

.impact-button:hover{border-color:var(--orange)}

.impact-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.impact-stat{
  min-height:130px;
  padding:10px 22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid rgba(255,255,255,.3);
}

.impact-stat:last-child{border-right:0}
.impact-stat i{margin-bottom:14px;color:var(--orange);font-size:23px}

.impact-stat strong{
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:23px;
  line-height:1;
}

.impact-stat span{
  margin-top:10px;
  color:#aaa;
  font-size:8px;
  font-weight:600;
  line-height:1.5;
  letter-spacing:1px;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.home-capabilities{
  padding:95px 0 100px;
  background:#070808;
}

.capabilities-layout{
  display:grid;
  grid-template-columns:.75fr 1.6fr;
  gap:55px;
  align-items:start;
}

.capabilities-heading h2{
  margin:0;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(38px,3.6vw,55px);
  line-height:.95;
  letter-spacing:-2px;
}

.capabilities-heading h2 span{
  display:block;
  color:var(--orange);
}

.capabilities-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.capability-card{
  min-height:185px;
  padding:22px;
  display:flex;
  flex-direction:column;
  background:linear-gradient(145deg,#101213,#080909);
  border:1px solid rgba(255,106,0,.55);
  transition:transform .3s ease,background .3s ease;
}

.capability-card:hover{
  transform:translateY(-5px);
  background:linear-gradient(145deg,#151718,#0a0b0c);
}

.capability-icon{
  width:44px;
  height:44px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  border:1px solid var(--orange);
  border-radius:50%;
}

.capability-card h3{
  margin:0 0 9px;
  font-family:"Space Grotesk",sans-serif;
  font-size:15px;
}

.capability-card p{
  margin:0;
  color:#858585;
  font-size:10px;
  line-height:1.65;
}

.capability-card a{
  margin-top:auto;
  padding-top:18px;
  color:var(--orange);
  text-decoration:none;
  font-size:8px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}


/* =========================================================
   CTA
   ========================================================= */

.home-cta{
  position:relative;
  min-height:210px;
  display:flex;
  align-items:center;

  background:
    linear-gradient(90deg,rgba(255,106,0,.98),rgba(255,91,0,.96)),
    url("../images/built-impact.jpg") center/cover;

  overflow:hidden;
}

.home-cta::after{
  content:"";
  position:absolute;
  width:550px;
  height:550px;
  right:-170px;
  top:-170px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,106,0,.96),rgba(255,106,0,.85));
}

.cta-container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.8fr 1.3fr auto;
  gap:55px;
  align-items:center;
}

.cta-heading span{
  display:block;
  margin-bottom:9px;
  color:#fff;
  font-size:8px;
  font-weight:800;
  letter-spacing:3px;
}

.cta-heading h2{
  margin:0;
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(40px,4vw,57px);
  line-height:.88;
  letter-spacing:-2px;
}

.cta-heading h2 strong{
  display:block;
  color:#050505;
}

.cta-text p{
  max-width:570px;
  margin:0;
  color:rgba(255,255,255,.95);
  font-size:12px;
  line-height:1.7;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:15px 23px;
  color:#fff;
  background:#050505;
  text-decoration:none;
  white-space:nowrap;
  font-size:9px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  transition:transform .25s ease;
}

.cta-button:hover{transform:translateY(-3px)}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
  background:#050505;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
  padding:55px 0 38px;
  display:grid;
  grid-template-columns:1.5fr .8fr .9fr 1fr;
  gap:55px;
}

.footer-logo{
  display:inline-block;
  margin-bottom:15px;
  color:#fff;
  text-decoration:none;
  font-family:"Space Grotesk",sans-serif;
  font-size:21px;
  font-weight:700;
}

.footer-logo span{color:var(--orange)}
.footer-logo small{margin-left:3px;font-size:7px}

.footer-company p{
  max-width:330px;
  margin:0;
  color:#777;
  font-size:10px;
  line-height:1.7;
}

.footer-column{display:flex;flex-direction:column}

.footer-column h3{
  margin:0 0 18px;
  color:var(--orange);
  font-size:9px;
  font-weight:800;
  letter-spacing:2px;
}

.footer-column>a{
  margin-bottom:10px;
  color:#888;
  text-decoration:none;
  font-size:10px;
  transition:color .2s ease;
}

.footer-column>a:hover{color:var(--orange)}

.footer-column p{
  margin:0 0 11px;
  color:#888;
  font-size:10px;
}

.footer-column p i{
  width:20px;
  color:var(--orange);
}

.footer-bottom{
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span{
  color:#555;
  font-size:8px;
  text-decoration:none;
}

.footer-bottom a:hover{color:var(--orange)}
.footer-bottom div{display:flex;gap:9px}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-button{
  position:fixed;
  right:24px;
  bottom:25px;
  z-index:20000;

  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  background:#20d366;
  border-radius:50%;
  text-decoration:none;
  font-size:25px;

  box-shadow:0 8px 30px rgba(0,0,0,.35);
  transition:transform .25s ease,box-shadow .25s ease;
}

.whatsapp-button:hover{
  transform:scale(1.08);
  box-shadow:0 10px 35px rgba(32,211,102,.3);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1200px){

  .site-header{padding:0 18px}

  .header-container{
    height:72px;
    min-height:72px;
  }

  .site-logo{
    min-width:220px;
    padding:0 18px;
    font-size:19px;
  }

  .site-logo::before{
    transform:scale(.82);
    margin-right:8px;
  }

  .main-nav>a:not(.header-cta){
    padding:0 10px;
    font-size:10px;
  }

  .main-nav>a.header-cta{min-width:135px}

  .hero-content{width:70%}

  .hero-trust-card{
    width:175px;
    min-height:175px;
  }

  .impact-container{
    grid-template-columns:1fr;
    gap:35px;
  }

  .capabilities-layout{
    grid-template-columns:1fr;
    gap:35px;
  }

  .cta-container{
    grid-template-columns:1fr 1fr;
  }

  .cta-button{justify-self:start}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:900px){

  .site-header{
    top:10px;
    padding:0 14px;
  }

  .header-container{
    height:68px;
    min-height:68px;
    padding:0 12px 0 0;
    border-radius:14px;
  }

  .site-logo{
    min-width:0;
    padding:0 16px;
    border-right:0;
    font-size:18px;
  }

  .site-logo::before{
    transform:scale(.72);
    margin-right:5px;
  }

  .site-logo small{display:none}

  .main-nav{
    position:absolute;
    top:76px;
    left:0;
    right:0;
    height:auto;

    display:none;
    flex-direction:column;
    align-items:stretch;

    padding:12px;

    background:rgba(5,7,7,.98);
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    box-shadow:0 25px 60px rgba(0,0,0,.55);
  }

  .main-nav.mobile-open{display:flex}

  .main-nav>a:not(.header-cta){
    height:48px;
    padding:0 15px;
    justify-content:flex-start;
    font-size:12px;
  }

  .main-nav>a:not(.header-cta)::before,
  .main-nav>a.active::after{display:none}

  .main-nav>a.header-cta{
    height:48px;
    margin:8px 0 0;
  }

  .mobile-menu-toggle{display:flex}

  .home-hero{
    min-height:680px;
    background-position:58% center;
  }

  .hero-container{
    width:calc(100% - 36px);
    min-height:auto;
    display:block;
    padding-top:125px;
    padding-bottom:45px;
  }

  .hero-content{
    width:100%;
    max-width:none;
  }

  .hero-eyebrow{
    margin-bottom:16px;
    font-size:9px;
    letter-spacing:2.5px;
  }

  .hero-eyebrow span{width:22px}

  .hero-title{
    font-size:clamp(48px,14vw,82px);
    letter-spacing:-3px;
  }

  .hero-subtitle{
    margin-top:20px;
    font-size:clamp(25px,7vw,38px);
    letter-spacing:-1.5px;
  }

  .hero-services-line{
    gap:7px;
    font-size:8px;
    line-height:1.6;
  }

  .hero-description{
    font-size:12px;
    line-height:1.65;
  }

  .hero-buttons{flex-wrap:wrap}

  .btn{
    min-height:46px;
    padding:0 17px;
    font-size:9px;
  }

  .hero-trust-card{display:none}

  .hero-stats{
    width:calc(100% - 36px);
    grid-template-columns:repeat(2,1fr);
  }

  .hero-stat{
    padding:17px 14px;
    gap:11px;
  }

  .stat-icon{font-size:19px}
  .hero-stat strong{font-size:21px}
  .hero-stat span{font-size:6px}

  .home-services{padding:75px 0 80px}

  .section-container,
  .impact-container,
  .cta-container,
  .footer-container,
  .footer-bottom{
    width:calc(100% - 36px);
  }

  .section-heading{margin-bottom:35px}
  .section-heading h2{font-size:38px}
  .section-heading p{font-size:11px}

  .services-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-image{height:220px}

  .home-impact{
    padding:70px 0;
    min-height:auto;
  }

  .impact-intro h2{font-size:39px}

  .impact-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .impact-stat{
    padding:20px;
    border-bottom:1px solid rgba(255,255,255,.2);
  }

  .impact-stat:nth-child(2){border-right:0}
  .impact-stat:nth-child(3),
  .impact-stat:nth-child(4){border-bottom:0}

  .home-capabilities{padding:75px 0}

  .capabilities-heading h2{font-size:40px}

  .capabilities-grid{grid-template-columns:1fr}

  .home-cta{
    min-height:auto;
    padding:65px 0;
  }

  .cta-container{
    grid-template-columns:1fr;
    gap:25px;
  }

  .cta-heading h2{font-size:47px}

  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:35px 25px;
    padding:50px 0 35px;
  }

  .footer-company{grid-column:1/-1}

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .footer-bottom div{flex-wrap:wrap}

  .whatsapp-button{
    width:47px;
    height:47px;
    right:17px;
    bottom:17px;
    font-size:22px;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media(max-width:480px){

  .hero-title{font-size:48px}
  .hero-subtitle{font-size:26px}

  .hero-services-line{display:block}

  .hero-services-line b{margin:0 4px}

  .hero-stat{min-height:78px}
  .hero-stat strong{font-size:18px}
  .hero-stat span{font-size:5.5px}

  .service-image{height:195px}

  .section-heading h2{font-size:34px}
  .impact-intro h2{font-size:34px}
  .impact-stat strong{font-size:19px}

  .footer-container{grid-template-columns:1fr}
}

/* =========================================================
   HOLS-FIELD — PREMIUM INTERACTION LAYER
   Add this at the VERY BOTTOM of home.css
========================================================= */


/* =========================================================
   1. SMOOTH PAGE SCROLL
========================================================= */

html {
    scroll-behavior: smooth;
}


/* =========================================================
   2. GLOBAL TRANSITIONS
========================================================= */

a,
button,
.service-card,
.capability-card,
.stat-item,
.impact-section,
.hero-trust-card {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   3. HERO BUTTONS
========================================================= */

.hero-buttons a {
    position: relative;
    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.hero-buttons a::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.22),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .6s ease;
}

.hero-buttons a:hover::before {
    left: 140%;
}

.hero-buttons a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255,106,0,.20);
}

.hero-buttons a:active {
    transform: translateY(-1px);
}


/* =========================================================
   4. ORANGE PRIMARY BUTTON
========================================================= */

.hero-buttons .btn-primary,
.btn-primary {
    box-shadow:
        0 8px 25px rgba(255,106,0,.12);
}

.hero-buttons .btn-primary:hover,
.btn-primary:hover {
    background: #ff7a1a;

    box-shadow:
        0 15px 40px rgba(255,106,0,.30);
}


/* =========================================================
   5. SECONDARY BUTTON
========================================================= */

.hero-buttons .btn-secondary:hover,
.btn-secondary:hover {
    border-color: #ff6a00;

    background: rgba(255,106,0,.06);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);
}


/* =========================================================
   6. HERO TRUST CARD
========================================================= */

.hero-trust-card {
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.hero-trust-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(255,106,0,.55);

    background:
        rgba(12,12,12,.72);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 35px rgba(255,106,0,.08);
}

.hero-trust-card i,
.hero-trust-card .fa-shield-halved {
    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}

.hero-trust-card:hover i,
.hero-trust-card:hover .fa-shield-halved {
    transform: scale(1.08) rotate(5deg);

    box-shadow:
        0 0 25px rgba(255,106,0,.25);
}


/* =========================================================
   7. HERO STATS
========================================================= */

.hero-stats {
    position: relative;
}

.hero-stats .stat-item {
    position: relative;

    transition:
        background .35s ease,
        transform .35s ease,
        border-color .35s ease;
}

.hero-stats .stat-item::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ff6a00;

    transform: translateX(-50%);

    transition: width .35s ease;
}

.hero-stats .stat-item:hover {
    background:
        rgba(255,106,0,.045);

    transform: translateY(-3px);
}

.hero-stats .stat-item:hover::before {
    width: 45%;
}

.hero-stats i {
    transition:
        transform .35s ease,
        filter .35s ease;
}

.hero-stats .stat-item:hover i {
    transform: scale(1.12);

    filter:
        drop-shadow(0 0 8px rgba(255,106,0,.5));
}


/* =========================================================
   8. SECTION HEADINGS
========================================================= */

.section-heading h2 {
    transition: letter-spacing .4s ease;
}

.section-heading:hover h2 {
    letter-spacing: -1px;
}


/* =========================================================
   9. SERVICE CARDS
========================================================= */

.service-card {
    position: relative;

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        box-shadow .45s ease,
        background .35s ease;
}


/* orange top accent */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #ff6a00;

    transition: width .45s ease;

    z-index: 5;
}

.service-card:hover::before {
    width: 100%;
}


/* soft glow */

.service-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -110px;

    border-radius: 50%;

    background:
        rgba(255,106,0,.08);

    filter: blur(35px);

    opacity: 0;

    transition: opacity .45s ease;

    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(255,106,0,.40);

    background:
        rgba(18,18,18,.95);

    box-shadow:
        0 25px 60px rgba(0,0,0,.40),
        0 0 30px rgba(255,106,0,.05);
}


/* =========================================================
   10. SERVICE CARD IMAGE
========================================================= */

.service-card .card-image,
.service-card .service-image,
.service-card img {
    transition:
        transform .7s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}

.service-card:hover .card-image,
.service-card:hover .service-image,
.service-card:hover img {
    transform: scale(1.06);

    filter:
        brightness(1.05)
        saturate(1.08);
}


/* =========================================================
   11. SERVICE CARD ICON
========================================================= */

.service-card .card-icon,
.service-card .service-icon {
    transition:
        transform .4s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.service-card:hover .card-icon,
.service-card:hover .service-icon {
    transform:
        translateY(-3px)
        rotate(-4deg);

    box-shadow:
        0 0 22px rgba(255,106,0,.20);
}


/* =========================================================
   12. LEARN MORE LINKS
========================================================= */

.service-card a {
    position: relative;

    transition:
        color .3s ease,
        letter-spacing .3s ease;
}

.service-card a:hover {
    color: #ffffff;

    letter-spacing: .6px;
}


/* =========================================================
   13. IMPACT SECTION
========================================================= */

.impact-section {
    position: relative;

    overflow: hidden;
}

.impact-section::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,106,0,.03),
            transparent 35%,
            transparent 65%,
            rgba(255,106,0,.03)
        );

    opacity: 0;

    transition: opacity .5s ease;

    pointer-events: none;
}

.impact-section:hover::after {
    opacity: 1;
}


/* =========================================================
   14. IMPACT STATISTICS
========================================================= */

.impact-stat {
    transition:
        transform .4s ease,
        background .35s ease;
}

.impact-stat:hover {
    transform: translateY(-6px);
}

.impact-stat i {
    transition:
        transform .4s ease,
        filter .4s ease;
}

.impact-stat:hover i {
    transform: scale(1.15);

    filter:
        drop-shadow(0 0 10px rgba(255,106,0,.55));
}


/* =========================================================
   15. CAPABILITY CARDS
========================================================= */

.capability-card {
    position: relative;

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .4s ease;
}

.capability-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: #ff6a00;

    transition: height .45s ease;
}

.capability-card:hover::before {
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255,106,0,.55);

    background:
        rgba(18,18,18,.75);

    box-shadow:
        0 20px 45px rgba(0,0,0,.35);
}


/* =========================================================
   16. CAPABILITY ICON
========================================================= */

.capability-card i {
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.capability-card:hover i {
    transform:
        scale(1.08)
        rotate(-5deg);

    box-shadow:
        0 0 25px rgba(255,106,0,.18);
}


/* =========================================================
   17. CTA SECTION
========================================================= */

.cta-section {
    position: relative;

    overflow: hidden;
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: -200px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    transform: translateY(-50%);

    transition:
        transform 1.2s ease;
}

.cta-section:hover::before {
    transform:
        translateY(-50%)
        scale(1.12);
}


/* =========================================================
   18. CTA BUTTON
========================================================= */

.cta-section a {
    position: relative;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.cta-section a:hover {
    transform: translateX(5px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);
}


/* =========================================================
   19. WHATSAPP BUTTON
========================================================= */

.whatsapp-button {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-button:hover {
    transform:
        translateY(-5px)
        scale(1.06);

    box-shadow:
        0 12px 30px rgba(0,0,0,.30);
}

.whatsapp-button i {
    transition: transform .3s ease;
}

.whatsapp-button:hover i {
    transform: rotate(-8deg) scale(1.08);
}


/* =========================================================
   20. FOOTER LINKS
========================================================= */

footer a {
    transition:
        color .25s ease,
        padding-left .25s ease;
}

footer a:hover {
    color: #ff6a00;

    padding-left: 4px;
}


/* =========================================================
   21. SUBTLE PAGE LOAD ANIMATION
========================================================= */

.hero-content {
    animation:
        heroContentIn .9s cubic-bezier(.2,.8,.2,1) both;
}

.hero-trust-card {
    animation:
        heroCardIn 1s .25s cubic-bezier(.2,.8,.2,1) both;
}

.hero-stats {
    animation:
        heroStatsIn 1s .4s cubic-bezier(.2,.8,.2,1) both;
}


@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes heroCardIn {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes heroStatsIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   22. SCROLL REVEAL
   Modern browsers only — gracefully ignored elsewhere
========================================================= */

@supports (animation-timeline: view()) {

    .service-card,
    .capability-card,
    .impact-stat {
        animation:
            revealUp linear both;

        animation-timeline: view();

        animation-range:
            entry 0% cover 25%;
    }

}


@keyframes revealUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   23. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


/* =========================================================
   24. MOBILE — KEEP EFFECTS REFINED
========================================================= */

@media (max-width: 850px) {

    .service-card:hover {
        transform: translateY(-5px);
    }

    .capability-card:hover {
        transform: translateY(-4px);
    }

    .hero-trust-card:hover {
        transform: translateY(-4px);
    }

}
/* =========================================================
   SERVICE CARDS — FINAL CLEANUP
========================================================= */

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Card image */
.service-card img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Card content */
.service-card .card-content,
.service-card .service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 34px 30px 28px;
}

/* If your HTML does not have a content wrapper,
   these rules still help the normal card structure */
.service-card h3 {
    margin: 10px 0 14px;
}

.service-card p {
    margin: 0;
    line-height: 1.65;
    color: rgba(255,255,255,.58);
}

/* Learn More */
.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: auto;
    padding-top: 28px;

    color: #ff6a00;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;

    text-decoration: none;
}

/* Arrow movement */
.service-card a::after {
    content: "→";

    transition:
        transform .3s ease;
}

.service-card a:hover::after {
    transform: translateX(5px);
}


/* =========================================================
   CARD HEIGHT
========================================================= */

.service-card {
    min-height: 560px;
}


/* =========================================================
   ICON POSITION
========================================================= */

.service-card .card-icon,
.service-card .service-icon {
    position: relative;
    z-index: 5;

    margin-top: -28px;
    margin-left: 28px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #090909;
    border: 1px solid #ff6a00;

    color: #ff6a00;

    box-shadow:
        0 8px 25px rgba(0,0,0,.45);
}


/* =========================================================
   PREMIUM HOVER
========================================================= */

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(255,106,0,.55);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);
}

.service-card:hover img {
    transform: scale(1.045);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .service-card {
        min-height: auto;
    }

    .service-card img {
        height: 220px;
    }

    .service-card .card-content,
    .service-card .service-content {
        padding: 28px 24px 25px;
    }

    .service-card a {
        padding-top: 22px;
    }

}
/* =========================================================
   HOLS-FIELD HOMEPAGE — HERO POLISH
========================================================= */

/* Subtle depth over the hero image */
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(255, 106, 0, 0.10),
            transparent 30%
        );

    pointer-events: none;
    z-index: 1;
}


/* Give the hero content more presence */
.hero-content {
    position: relative;
    z-index: 3;

    text-shadow:
        0 2px 18px rgba(0,0,0,.35);
}


/* Eyebrow */
.hero-eyebrow {
    transition:
        letter-spacing .35s ease,
        color .35s ease;
}

.hero-eyebrow:hover {
    letter-spacing: 4.5px;
}


/* Main headline */
.hero-title {
    text-shadow:
        0 8px 35px rgba(0,0,0,.35);
}

.hero-title-orange {
    text-shadow:
        0 0 28px rgba(255,106,0,.12);
}


/* Subtitle */
.hero-subtitle {
    text-shadow:
        0 4px 20px rgba(0,0,0,.35);
}


/* Description */
.hero-description {
    color: rgba(255,255,255,.78);

    transition:
        color .3s ease;
}

.hero-content:hover .hero-description {
    color: rgba(255,255,255,.88);
}


/* =========================================================
   HERO TRUST CARD
========================================================= */

.hero-trust-card {
    position: relative;
    z-index: 3;

    overflow: hidden;
}

.hero-trust-card::before {
    content: "";

    position: absolute;

    top: -80px;
    left: -80px;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        rgba(255,106,0,.08);

    filter: blur(20px);

    transition:
        transform .6s ease;
}

.hero-trust-card:hover::before {
    transform: scale(1.7);
}


/* =========================================================
   TRUST ICON
========================================================= */

.trust-icon {
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.hero-trust-card:hover .trust-icon {
    transform:
        scale(1.08)
        rotate(4deg);

    box-shadow:
        0 0 25px rgba(255,106,0,.20);
}


/* =========================================================
   HERO STAT BAR
========================================================= */

.hero-stats {
    position: relative;
    z-index: 5;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 -10px 35px rgba(0,0,0,.15);
}

.hero-stat {
    position: relative;

    transition:
        background .3s ease,
        transform .3s ease;
}

.hero-stat:hover {
    background:
        rgba(255,106,0,.055);

    transform: translateY(-3px);
}


/* Orange indicator */
.hero-stat::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ff6a00;

    transform: translateX(-50%);

    transition:
        width .35s ease;
}

.hero-stat:hover::after {
    width: 45%;
}


/* Statistic icon */
.hero-stat .stat-icon {
    transition:
        transform .35s ease,
        filter .35s ease;
}

.hero-stat:hover .stat-icon {
    transform: scale(1.12);

    filter:
        drop-shadow(
            0 0 8px
            rgba(255,106,0,.45)
        );
}


/* =========================================================
   HERO BUTTONS — PREMIUM HOVER
========================================================= */

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.20),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .65s ease;
}

.hero-buttons .btn:hover::before {
    left: 140%;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero-trust-card {
        display: none;
    }

    .hero-stat:hover {
        transform: none;
    }

    .hero-buttons .btn:hover {
        transform: translateY(-2px);
    }

}
/* =========================================================
   HOLS-FIELD — HERO POLISH
========================================================= */

/* Extra depth over the hero image */
.home-hero {
    isolation: isolate;
}

/* Soft cinematic overlay */
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(255, 106, 0, 0.08),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.18),
            transparent 55%
        );
}


/* Keep hero content above overlay */
.hero-container {
    position: relative;
    z-index: 3;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {
    position: relative;

    transition:
        letter-spacing .35s ease,
        color .35s ease;
}

.hero-eyebrow span {
    transition:
        width .35s ease;
}

.hero-eyebrow:hover {
    letter-spacing: 4px;
}

.hero-eyebrow:hover span {
    width: 45px;
}


/* =========================================================
   MAIN HEADLINE
========================================================= */

.hero-title {
    text-shadow:
        0 8px 35px rgba(0,0,0,.38);
}

.hero-title-orange {
    text-shadow:
        0 0 25px rgba(255,106,0,.12);
}


/* =========================================================
   SUBTITLE
========================================================= */

.hero-subtitle {
    text-shadow:
        0 5px 22px rgba(0,0,0,.35);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    color: rgba(255,255,255,.78);

    transition:
        color .3s ease;
}

.hero-content:hover .hero-description {
    color: rgba(255,255,255,.88);
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons .btn {
    position: relative;
    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.hero-buttons .btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 75%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.20),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .65s ease;
}

.hero-buttons .btn:hover::before {
    left: 140%;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   TRUST CARD
========================================================= */

.hero-trust-card {
    position: relative;
    overflow: hidden;

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}

.hero-trust-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -100px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(255,106,0,.07);

    filter: blur(30px);

    opacity: .7;

    transition:
        transform .5s ease;
}

.hero-trust-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255,106,0,.48);

    box-shadow:
        0 18px 45px rgba(0,0,0,.40);
}

.hero-trust-card:hover::before {
    transform: scale(1.35);
}


/* Trust icon */
.trust-icon {
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.hero-trust-card:hover .trust-icon {
    transform: scale(1.06);

    box-shadow:
        0 0 22px rgba(255,106,0,.20);
}


/* =========================================================
   HERO STAT BAR
========================================================= */

.hero-stats {
    position: relative;
    z-index: 4;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
    position: relative;

    transition:
        background .3s ease;
}

.hero-stat::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ff6a00;

    transform: translateX(-50%);

    transition:
        width .3s ease;
}

.hero-stat:hover {
    background:
        rgba(255,106,0,.045);
}

.hero-stat:hover::after {
    width: 42%;
}

.hero-stat .stat-icon {
    transition:
        transform .3s ease,
        filter .3s ease;
}

.hero-stat:hover .stat-icon {
    transform: scale(1.08);

    filter:
        drop-shadow(
            0 0 7px
            rgba(255,106,0,.40)
        );
}


/* =========================================================
   HERO ENTRANCE
========================================================= */

.hero-content {
    animation:
        hfHeroContent .8s ease-out both;
}

.hero-trust-card {
    animation:
        hfHeroTrust .9s .15s ease-out both;
}

.hero-stats {
    animation:
        hfHeroStats .8s .25s ease-out both;
}

@keyframes hfHeroContent {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes hfHeroTrust {

    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes hfHeroStats {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero-trust-card {
        display: none;
    }

    .hero-stat:hover {
        background: transparent;
    }

    .hero-stat:hover::after {
        width: 0;
    }

}
/* =========================================================
   HOLS-FIELD HOMEPAGE
   TABLET + MOBILE RESPONSIVENESS
   Does NOT change desktop design
========================================================= */


/* =========================================================
   TABLET — 901px to 1200px
========================================================= */

@media (min-width: 901px) and (max-width: 1200px) {

    /* ---------- General ---------- */

    .section-container,
    .impact-container,
    .cta-container,
    .footer-container,
    .footer-bottom,
    .hero-container,
    .hero-stats {
        width: calc(100% - 60px);
    }


    /* ---------- Hero ---------- */

    .home-hero {
        min-height: 700px;
    }

    .hero-container {
        min-height: 590px;

        padding-top: 110px;
    }

    .hero-content {
        width: 66%;
        max-width: 680px;
    }

    .hero-title {
        font-size: clamp(58px, 6vw, 82px);
        letter-spacing: -4px;
    }

    .hero-subtitle {
        font-size: clamp(28px, 3vw, 40px);
    }

    .hero-description {
        max-width: 600px;
        font-size: 13px;
    }

    .hero-trust-card {
        width: 185px;
        min-height: 185px;
        margin-right: 5px;
    }


    /* ---------- Hero Stats ---------- */

    .hero-stat {
        padding: 16px 18px;
        gap: 12px;
    }

    .hero-stat strong {
        font-size: 23px;
    }

    .hero-stat span {
        font-size: 7px;
    }


    /* ---------- Services ---------- */

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .service-image {
        height: 190px;
    }

    .service-content {
        padding: 24px 21px 24px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 10px;
    }


    /* ---------- Impact ---------- */

    .impact-container {
        gap: 35px;
    }

    .impact-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .impact-stat {
        padding: 10px 14px;
    }

    .impact-stat strong {
        font-size: 20px;
    }


    /* ---------- Capabilities ---------- */

    .capabilities-layout {
        grid-template-columns: .7fr 1.5fr;
        gap: 35px;
    }

    .capabilities-grid {
        gap: 10px;
    }

    .capability-card {
        min-height: 175px;
        padding: 18px;
    }


    /* ---------- CTA ---------- */

    .cta-container {
        gap: 30px;
    }

    .cta-heading h2 {
        font-size: 44px;
    }


    /* ---------- Footer ---------- */

    .footer-container {
        gap: 30px;
    }

}


/* =========================================================
   MOBILE — 900px AND BELOW
========================================================= */

@media (max-width: 900px) {

    /* ---------- General ---------- */

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .section-container,
    .impact-container,
    .cta-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 36px);
    }


    /* =====================================================
       HERO
    ===================================================== */

    .home-hero {
        min-height: auto;

        padding-top: 0;

        background-position: 62% center;
    }

    .hero-container {
        width: calc(100% - 36px);

        min-height: auto;

        display: block;

        padding-top: 135px;
        padding-bottom: 42px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-eyebrow {
        margin-bottom: 16px;

        font-size: 8px;
        letter-spacing: 2.5px;

        white-space: nowrap;
    }

    .hero-eyebrow span {
        width: 22px;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: clamp(46px, 13vw, 72px);

        line-height: .90;

        letter-spacing: -3px;

        word-break: normal;
    }

    .hero-subtitle {
        margin-top: 20px;

        font-size: clamp(25px, 7vw, 37px);

        line-height: 1;

        letter-spacing: -1.5px;
    }

    .hero-services-line {
        display: flex;

        flex-wrap: wrap;

        gap: 6px;

        margin-top: 14px;

        font-size: 8px;

        line-height: 1.7;
    }

    .hero-description {
        max-width: 100%;

        margin-top: 15px;

        font-size: 11px;

        line-height: 1.7;
    }

    .hero-buttons {
        display: flex;

        flex-wrap: wrap;

        gap: 10px;

        margin-top: 22px;
    }

    .hero-buttons .btn {
        min-height: 46px;

        padding: 0 17px;

        font-size: 8px;

        letter-spacing: .6px;
    }


    /* =====================================================
       TRUST CARD
    ===================================================== */

    .hero-trust-card {
        display: none;
    }


    /* =====================================================
       HERO STATISTICS
    ===================================================== */

    .hero-stats {
        width: calc(100% - 36px);

        grid-template-columns: repeat(2, 1fr);

        min-height: auto;
    }

    .hero-stat {
        min-height: 78px;

        padding: 15px 14px;

        gap: 10px;
    }

    .hero-stat:nth-child(1),
    .hero-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.13);
    }

    .hero-stat:nth-child(2) {
        border-right: 0;
    }

    .hero-stat:nth-child(4) {
        border-right: 0;
    }

    .stat-icon {
        font-size: 19px;
    }

    .hero-stat strong {
        font-size: 20px;
    }

    .hero-stat span {
        font-size: 6px;

        line-height: 1.4;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .home-services {
        padding: 72px 0 78px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2 {
        font-size: clamp(34px, 9vw, 43px);

        letter-spacing: -2px;
    }

    .section-heading p {
        max-width: 100%;

        font-size: 11px;

        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        width: 100%;

        min-height: auto;
    }

    .service-image {
        height: 215px;
    }

    .service-content {
        min-height: 245px;

        padding: 27px 24px 25px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 11px;

        line-height: 1.7;
    }

    .service-content a {
        bottom: 24px;
        left: 24px;
    }


    /* =====================================================
       IMPACT
    ===================================================== */

    .home-impact {
        min-height: auto;

        padding: 70px 0;
    }

    .impact-container {
        width: calc(100% - 36px);

        display: block;
    }

    .impact-intro h2 {
        font-size: clamp(35px, 10vw, 46px);

        letter-spacing: -2px;
    }

    .impact-intro p {
        max-width: 100%;

        font-size: 11px;
    }

    .impact-stats {
        margin-top: 38px;

        grid-template-columns: repeat(2, 1fr);
    }

    .impact-stat {
        min-height: 120px;

        padding: 20px 16px;
    }

    .impact-stat:nth-child(2),
    .impact-stat:nth-child(4) {
        border-right: 0;
    }

    .impact-stat:nth-child(3),
    .impact-stat:nth-child(4) {
        border-bottom: 0;
    }

    .impact-stat strong {
        font-size: 21px;
    }

    .impact-stat span {
        font-size: 7px;
    }


    /* =====================================================
       CAPABILITIES
    ===================================================== */

    .home-capabilities {
        padding: 72px 0 78px;
    }

    .capabilities-layout {
        display: block;
    }

    .capabilities-heading {
        margin-bottom: 35px;
    }

    .capabilities-heading h2 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .capabilities-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .capability-card {
        min-height: 165px;

        padding: 21px;
    }

    .capability-card h3 {
        font-size: 16px;
    }

    .capability-card p {
        font-size: 10px;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .home-cta {
        min-height: auto;

        padding: 65px 0;
    }

    .cta-container {
        width: calc(100% - 36px);

        display: block;
    }

    .cta-heading {
        margin-bottom: 22px;
    }

    .cta-heading h2 {
        font-size: clamp(40px, 11vw, 52px);

        letter-spacing: -2px;
    }

    .cta-text {
        margin-bottom: 25px;
    }

    .cta-text p {
        font-size: 11px;

        line-height: 1.7;
    }

    .cta-button {
        min-height: 48px;

        padding: 0 19px;

        font-size: 9px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-container {
        width: calc(100% - 36px);

        grid-template-columns: 1fr 1fr;

        gap: 35px 22px;

        padding: 50px 0 35px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-company p {
        max-width: 100%;

        font-size: 10px;
    }

    .footer-column h3 {
        font-size: 8px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 9px;
    }

    .footer-bottom {
        width: calc(100% - 36px);

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .whatsapp-button {
        width: 48px;
        height: 48px;

        right: 16px;
        bottom: 16px;

        font-size: 22px;
    }

}


/* =========================================================
   SMALL PHONES — 480px AND BELOW
========================================================= */

@media (max-width: 480px) {

    /* ---------- Hero ---------- */

    .hero-container {
        width: calc(100% - 28px);

        padding-top: 125px;
        padding-bottom: 35px;
    }

    .hero-eyebrow {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(42px, 14vw, 58px);

        letter-spacing: -2.5px;
    }

    .hero-subtitle {
        font-size: 25px;
    }

    .hero-description {
        font-size: 10.5px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;

        min-width: 0;

        padding: 0 11px;

        font-size: 7.5px;
    }


    /* ---------- Stats ---------- */

    .hero-stats {
        width: calc(100% - 28px);
    }

    .hero-stat {
        padding: 13px 10px;

        gap: 8px;
    }

    .stat-icon {
        font-size: 17px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 5.5px;
    }


    /* ---------- Sections ---------- */

    .section-container,
    .impact-container,
    .cta-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 28px);
    }


    /* ---------- Services ---------- */

    .service-image {
        height: 195px;
    }

    .service-content {
        padding: 25px 21px;
    }


    /* ---------- Impact ---------- */

    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }

    .impact-stat {
        min-height: 110px;
        padding: 17px 12px;
    }


    /* ---------- Footer ---------- */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-company {
        grid-column: auto;
    }

}