*{margin:0;padding:0;box-sizing:border-box}
:root{
  --yellow:#ffd21f;
  --yellow2:#ffb800;
  --black:#050505;
  --dark:#101010;
  --card:#171717;
  --line:rgba(255,255,255,.10);
  --text:#fff;
  --muted:#bdbdbd;
}
html{scroll-behavior:smooth}
body{
  font-family:Inter,Arial,sans-serif;
  background:#050505;
  color:var(--text);
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 75% 0%,rgba(255,210,31,.17),transparent 32%),
    radial-gradient(circle at 0% 70%,rgba(255,210,31,.08),transparent 25%);
  z-index:-1;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.topbar{
  height:42px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:#111;
  background:var(--yellow);
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
}
.header{
  min-height:100vh;
  background:
    linear-gradient(90deg,#050505 0%,rgba(5,5,5,.92) 42%,rgba(5,5,5,.40) 100%);
  position:relative;
}
.nav{
  height:92px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
  position:relative;
  z-index:5;
}
.brand img{width:180px;height:auto}
.menu{display:flex;align-items:center;gap:34px;font-weight:900;text-transform:uppercase;font-size:14px;letter-spacing:.06em}
.menu a{position:relative;color:#f2f2f2}
.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--yellow);
  transition:.25s;
}
.menu a:hover{color:var(--yellow)}
.menu a:hover::after{width:100%}
.menuBtn{display:none;background:transparent;border:0;width:42px;height:42px}
.menuBtn span{display:block;height:3px;background:#fff;margin:7px 0;border-radius:10px}
.hero{
  min-height:calc(100vh - 134px);
  padding:70px 7%;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:48px;
}
.tag,.sectionHead span,.stageText span,.diagText span,.contactCard span{
  display:inline-flex;
  color:var(--yellow);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
  margin-bottom:18px;
}
.hero h1{
  font-family:"Bebas Neue",Inter,sans-serif;
  font-size:clamp(58px,8vw,118px);
  line-height:.86;
  letter-spacing:.01em;
  max-width:740px;
}
.hero p{
  max-width:620px;
  color:#ddd;
  font-size:18px;
  line-height:1.75;
  margin-top:24px;
}
.actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}
.btn{
  padding:16px 22px;
  border-radius:2px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:14px;
}
.primary{background:var(--yellow);color:#050505}
.secondary{border:1px solid rgba(255,255,255,.22);color:#fff}
.secondary:hover{border-color:var(--yellow);color:var(--yellow)}
.heroPhoto{
  border:1px solid rgba(255,210,31,.25);
  padding:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.015));
  box-shadow:0 40px 100px rgba(0,0,0,.5);
}
.heroPhoto img{height:700px;width:100%;object-fit:cover}
.section{padding:92px 7%}
.sectionHead{text-align:center;max-width:800px;margin:0 auto 44px}
.sectionHead h2,.stageText h2,.diagText h2,.contactCard h2{
  font-family:"Bebas Neue",Inter,sans-serif;
  font-size:clamp(44px,5vw,76px);
  letter-spacing:.02em;
  line-height:.95;
}
.sectionHead p,.diagText p,.contactCard p{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  margin-top:14px;
}
.serviceGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.serviceCard{
  background:#111;
  border:1px solid var(--line);
  overflow:hidden;
  min-height:420px;
  display:flex;
  flex-direction:column;
}
.serviceCard img{
  height:450px;
  width:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.08);
  transition:.35s;
}
.serviceCard div{padding:24px}
.serviceCard h3,.stageCard h3{
  font-size:21px;
  text-transform:uppercase;
  margin-bottom:12px;
  font-weight:900;
}
.serviceCard p,.stageCard p{
  color:#cfcfcf;
  line-height:1.65;
}
.serviceCard:hover{border-color:rgba(255,210,31,.65)}
.serviceCard:hover img{transform:scale(1.04)}
.stageHero{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:center;
  background:linear-gradient(90deg,#090909,#111);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.stageText h2{color:var(--yellow)}
.stageText h3{
  font-size:24px;
  text-transform:uppercase;
  margin:8px 0 18px;
}
.stageText p{color:#ddd;line-height:1.8;font-size:17px}
.stageText ul{list-style:none;margin-top:22px;display:grid;gap:10px}
.stageText li{color:#f2f2f2;font-weight:700}
.stageText li::before{content:"✓";color:var(--yellow);font-weight:900;margin-right:10px}
.stageImage img{height:900px;width:100%;object-fit:cover;border:1px solid rgba(255,210,31,.32)}
.stageCards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.stageCard{
  background:#111;
  border:1px solid var(--line);
}
.stageCard img{height:320px;width:100%;object-fit:cover}
.stageCard div{padding:20px}
.diagnostic{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}
.diagImage img{height:520px;width:100%;object-fit:cover;border:1px solid var(--line)}
.diagList{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:24px}
.diagList b{
  border:1px solid var(--line);
  background:#111;
  padding:16px;
  color:var(--yellow);
}
.galleryGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.galleryGrid img{height:360px;width:100%;object-fit:cover;border:1px solid var(--line)}
.contact{padding:90px 7%;background:linear-gradient(90deg,rgba(255,210,31,.16),transparent),#080808}


.contact{

padding:90px 7%;

background:#080808;

}

.contactWrapper{

max-width:1400px;

margin:auto;

text-align:center;

}

.contactTag{

display:inline-block;

color:#ffd21f;

font-weight:900;

letter-spacing:.25em;

margin-bottom:18px;

}

.contactWrapper h2{

font-family:"Bebas Neue",sans-serif;

font-size:72px;

margin-bottom:22px;

line-height:.95;

}

.contactDesc{

max-width:820px;

margin:auto;

font-size:20px;

color:#bdbdbd;

line-height:1.7;

margin-bottom:50px;

}

.contactAddress{

margin-bottom:40px;

}

.contactAddress h3{

font-size:32px;

margin-bottom:14px;

}

.contactAddress p{

font-size:18px;

line-height:1.9;

color:#d7d7d7;

margin-bottom:12px;

}

.contactButtons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

margin-bottom:55px;

}

.contactButtons a{

min-width:220px;

padding:18px 30px;

font-size:18px;

font-weight:800;

border-radius:4px;

transition:.35s;

text-decoration:none;

}

.btnWhats{

background:#25D366;

color:#fff;

}

.btnSocial{

background:#181818;

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

color:#fff;

}

.contactButtons a:hover{

transform:translateY(-5px);

}

.btnSocial:hover{

border-color:#ffd21f;

color:#ffd21f;

}

.contactMap{

border:1px solid rgba(255,210,31,.20);

overflow:hidden;

border-radius:6px;

box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.contactMap iframe{

width:100%;

height:420px;

border:0;

display:block;

}}
.footer{
  padding:34px 7%;
  text-align:center;
  border-top:1px solid var(--line);
  color:#aaa;
}
.footer img{width:130px;margin:0 auto 14px}
.reveal{opacity:0;transform:translateY(28px);transition:.65s ease}
.reveal.show{opacity:1;transform:none}
